From 43fff858ff78f93c680ab4f3ac92e101838a2c5a Mon Sep 17 00:00:00 2001 From: Rasmus Andersson Date: Wed, 7 Aug 2019 18:11:54 -0700 Subject: tooling: fixes bug in fallback-codepoint script --- misc/glyphs-scripts/assign-fallback-codepoints.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'misc') diff --git a/misc/glyphs-scripts/assign-fallback-codepoints.py b/misc/glyphs-scripts/assign-fallback-codepoints.py index ba4c16dbd..d5099a5fd 100644 --- a/misc/glyphs-scripts/assign-fallback-codepoints.py +++ b/misc/glyphs-scripts/assign-fallback-codepoints.py @@ -26,14 +26,14 @@ 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) if DRY_RUN: print('DRY_RUN mode (no actual changes will be made)') print('————————————————') - + # for printing mappings = OrderedDict() longest_gname = 0 -- cgit v1.2.3