Skip to content

Commit

Permalink
remove padding for null tags in tag table
Browse files Browse the repository at this point in the history
  • Loading branch information
dfrg committed Jul 28, 2024
1 parent 353f65f commit 0ba0b59
Show file tree
Hide file tree
Showing 2 changed files with 163 additions and 163 deletions.
2 changes: 1 addition & 1 deletion scripts/gen-tag-table.py
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ def rank_delta(bcp_47, ot):

def hb_tag(tag):
if tag == DEFAULT_LANGUAGE_SYSTEM:
return 'Tag::new(&[0; 4])\t '
return 'Tag::new(&[0; 4])'
return 'Tag::new(b\"%s%s%s%s\")' % tuple(('%-4s' % tag)[:4])


Expand Down
Loading

0 comments on commit 0ba0b59

Please sign in to comment.