Changeset 13384 in josm for trunk/scripts
- Timestamp:
- 2018-02-04T16:44:26+01:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/scripts/geticons.pl
r13282 r13384 152 152 my $f = <FILE>; 153 153 close FILE; 154 while($f =~ /style\s*=\s*["']([^"']+)["']/g)154 for my $sep ("'", '"') 155 155 { 156 for my $x (split(/\s*;\s*/, $1))156 while($f =~ /style\s*=\s*$sep([^$sep]+)$sep/g) 157 157 { 158 print STDERR "$ifile: Style starts with minus: $x\n" if $x =~ /^-/; 158 for my $x (split(/\s*;\s*/, $1)) 159 { 160 print STDERR "$ifile: Style starts with minus: $x\n" if $x =~ /^-/; 161 } 159 162 } 160 163 }
Note:
See TracChangeset
for help on using the changeset viewer.