Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-normatively visualize the indexes #89

Merged
merged 12 commits into from Jan 20, 2017
2 changes: 1 addition & 1 deletion visualize.py
Expand Up @@ -190,7 +190,7 @@ def format_index(name, row_length, lang, bmp, duplicates, byte_rule):
if byte_rule:
(lead_one, lead_two, trail_one, trail_two) = byte_rule
lead = row_num + lead_one
if lead_two and row_num >= 0x3F:
if lead_two and row_num >= 0x1F:
lead = row_num + lead_two
if dec_row_cell:
if lead < 0xA1:
Expand Down