Changeset 9073 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2015-11-30T23:14:56+01:00 (8 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/PlatformHookWindows.java
r8923 r9073 347 347 public Collection<FontEntry> getAdditionalFonts() { 348 348 Collection<FontEntry> def = new ArrayList<>(); 349 def.add(new FontEntry("devanagari", "", "")); // just include in fallback list 350 // font already defined in template 349 def.add(new FontEntry("devanagari", "", "")); // just include in fallback list font already defined in template 351 350 352 351 // Windows scripts: https://msdn.microsoft.com/en-us/goglobal/bb688099.aspx -
trunk/src/org/openstreetmap/josm/tools/TextTagParser.java
r8928 r9073 215 215 // tag1\tval1\ntag2\tval2\n 216 216 tags = readTagsByRegexp(buf, "[\\r\\n]+", ".*?([a-zA-Z0-9:_]+).*\\t(.*?)", false); 217 217 // try "tag\tvalue\n" format 218 218 if (tags != null) return tags; 219 219 … … 224 224 // a = b=c - this method of parsing fails intentionally 225 225 tags = readTagsByRegexp(buf, "[\\n\\t\\r]+", "(.*?)=(.*?)", true); 226 226 // try format t1=v1\n t2=v2\n ... 227 227 if (tags != null) return tags; 228 228
Note: See TracChangeset
for help on using the changeset viewer.