tooling: fixes bug in fallback-codepoint script
This commit is contained in:
parent
15a20262a6
commit
43fff858ff
1 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Reference in a new issue