tooling: fixes bug in fallback-codepoint script

This commit is contained in:
Rasmus Andersson 2019-08-07 18:11:54 -07:00
parent 15a20262a6
commit 43fff858ff

View file

@ -26,14 +26,14 @@ try:
for g in font.glyphs: for g in font.glyphs:
if g.unicodes is not None: if g.unicodes is not None:
for c in [int(c, 16) for c in g.unicodes]: for c in [int(c, 16) for c in g.unicodes]:
if c <= 0xEFFF and c > nextcp: if c <= 0xEFFF and c >= nextcp:
nextcp = c + 1 nextcp = c + 1
print('nextcp: %X' % nextcp) print('nextcp: %X' % nextcp)
if DRY_RUN: if DRY_RUN:
print('DRY_RUN mode (no actual changes will be made)') print('DRY_RUN mode (no actual changes will be made)')
print('————————————————') print('————————————————')
# for printing # for printing
mappings = OrderedDict() mappings = OrderedDict()
longest_gname = 0 longest_gname = 0