summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorJames Godfrey-Kittle <jamesgk@google.com>2015-04-20 17:37:24 -0700
committerjamesgk <jamesgk19@gmail.com>2015-04-20 17:37:24 -0700
commit79408d7a4c8cf3442b51727556e7f46366a126e0 (patch)
tree438e73248e7b81e485a2f6a6bf1ffd8c94d1bbc2 /scripts
parent2c8a3b194e13773a824d13ee48a958761fe085c0 (diff)
Don't check for invalid mark lookups.
With anchors fixed, we shouldn't need this check. Rollback of 55519e636b119dcdd91319364c572d3550050a43.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/lib/fontbuild/markFeature.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/lib/fontbuild/markFeature.py b/scripts/lib/fontbuild/markFeature.py
index 30da7c3..b617ef6 100755
--- a/scripts/lib/fontbuild/markFeature.py
+++ b/scripts/lib/fontbuild/markFeature.py
@@ -108,12 +108,6 @@ def GenerateFeature_mark(font):
classname = "@MC_" + anchor_name
accent_name_list = CreateAccNameList(font, acc_anchor_name, comb_accent_only)
- if not accent_name_list:
- print (
- 'No glyph found with anchor "%s", skipping mark lookup for %s.' %
- (acc_anchor_name, classname))
- continue
-
accent_mark_list = CreateAccGlyphList(font, accent_name_list, acc_anchor_name)
base_mark_list = CreateGlyphList(font, accent_name_list, anchor_name)
text += Create_mark_lookup(accent_mark_list, base_mark_list, lookupname, classname, expand_to_composits)