[indic-table] Make output stable

This commit is contained in:
Behdad Esfahbod 2014-06-20 17:57:03 -04:00
parent 55abfbd2ac
commit c2e1134046
1 changed files with 1 additions and 1 deletions

View File

@ -195,7 +195,7 @@ print "{"
print " switch (u >> 12)"
print " {"
pages = set([u>>12 for u in starts+ends+singles.keys()])
for p in pages:
for p in sorted(pages):
print " case 0x%0X:" % p
for (start,end) in zip (starts, ends):
if p not in [start>>12, end>>12]: continue