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,7 +26,7 @@ try:
|
|||
for g in font.glyphs:
|
||||
if g.unicodes is not None:
|
||||
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
|
||||
|
||||
print('nextcp: %X' % nextcp)
|
||||
|
|
|
|||
Reference in a new issue