summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2014-11-18 19:49:54 -0700
committerDan Allen <dan.j.allen@gmail.com>2014-11-18 19:49:54 -0700
commit6f92f091b492c97b0220e4e2e0fbc8f57fe87bf9 (patch)
treedc2292a27368a990960879f73ca670980839e0a9
parenta3ca9cdb0e8abcff7694b0d21714a0dcfc65ec47 (diff)
only select euro symbol from extended currencies
- only select euro symbol from extended currencies in font script - add note about cmap format 14 table error
-rwxr-xr-xscripts/generate-font-subsets.pe6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/generate-font-subsets.pe b/scripts/generate-font-subsets.pe
index 632a74c..1a056a0 100755
--- a/scripts/generate-font-subsets.pe
+++ b/scripts/generate-font-subsets.pe
@@ -77,8 +77,9 @@ while (fi < num_copy_fonts)
SelectMore(0u25a0,0u25ff)
# Greek (frequently used for math and bullets)
SelectMore(0u0370,0u03ff)
- # Additional Currency Symbols (QUESTION: do we need all of them in basic latin?)
- SelectMore(0u20a0,0u20d0)
+ # Additional Currency Symbols (QUESTION: do we need all of them in basic latin? Euro Sign is 0u20ac)
+ #SelectMore(0u20a0,0u20d0)
+ SelectMore(0u20ac)
if (script == "latin-ext" || script == "latin-cyrillic" || script == "multilingual")
# Latin Extended-A, Latin Extended-B
SelectMore(0u0100,0u024f)
@@ -124,6 +125,7 @@ while (fi < num_copy_fonts)
endif
# Generate line feed from no-break space (works around error "cmap format 14 is not supported" in ttfunk)
+ # FIXME another option here is to select all the characters referenced by the cmap format 14 table
Select(0u00a0)
Copy()
SelectNone()