diff options
author | Mike FABIAN <mfabian@redhat.com> | 2024-01-08 10:05:13 +0100 |
---|---|---|
committer | Mike FABIAN <mfabian@redhat.com> | 2024-01-08 10:06:42 +0100 |
commit | d333a2e0fb3a8045d2667847b8c99ee82a6bbdd2 (patch) | |
tree | 48cfd46104b49093739e2e2ac171570d15e49470 /localedata/unicode-gen | |
parent | 6f87f46bf4277d1a0d27b2507603e0acc059e6cb (diff) | |
download | glibc-d333a2e0fb3a8045d2667847b8c99ee82a6bbdd2.tar.gz glibc-d333a2e0fb3a8045d2667847b8c99ee82a6bbdd2.tar.xz glibc-d333a2e0fb3a8045d2667847b8c99ee82a6bbdd2.zip |
localedata: unicode-gen: Remove redundant \s* from regexp, fix comments
Diffstat (limited to 'localedata/unicode-gen')
-rwxr-xr-x | localedata/unicode-gen/utf8_gen.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/localedata/unicode-gen/utf8_gen.py b/localedata/unicode-gen/utf8_gen.py index 5e77333bb4..f744e87ffc 100755 --- a/localedata/unicode-gen/utf8_gen.py +++ b/localedata/unicode-gen/utf8_gen.py @@ -204,7 +204,7 @@ def write_header_width(outfile, unicode_version): + '{:s}.\n'.format(unicode_version)) outfile.write('% - Default width is 1.\n') outfile.write('% - Double-width characters have width 2; generated from\n') - outfile.write('% "grep \'^[^;]*;[WF]\' EastAsianWidth.txt"\n') + outfile.write('% "grep \'^[^;]*;\\s*[WF]\' EastAsianWidth.txt"\n') outfile.write('% - Non-spacing characters have width 0; ' + 'generated from PropList.txt or\n') outfile.write('% "grep \'^[^;]*;[^;]*;[^;]*;[^;]*;NSM;\' ' @@ -339,8 +339,8 @@ if __name__ == "__main__": with open(ARGS.east_asian_with_file, mode='r') as EAST_ASIAN_WIDTH_FILE: EAST_ASIAN_WIDTH_LINES = [] for LINE in EAST_ASIAN_WIDTH_FILE: - # If characters from EastAasianWidth.txt which are from - # from reserved ranges (i.e. not yet assigned code points) + # If characters from EastAsianWidth.txt which are from + # reserved ranges (i.e. not yet assigned code points) # are added to the WIDTH section of the UTF-8 file, then # “make check” produces “Unknown Character” errors for # these code points because such unassigned code points @@ -350,7 +350,7 @@ if __name__ == "__main__": # the EastAsianWidth.txt file. if re.match(r'.*<reserved-.+>\.\.<reserved-.+>.*', LINE): continue - if re.match(r'^[^;]*;\s*[WF]\s*', LINE): + if re.match(r'^[^;]*;\s*[WF]', LINE): EAST_ASIAN_WIDTH_LINES.append(LINE.strip()) with open(ARGS.prop_list_file, mode='r') as PROP_LIST_FILE: PROP_LIST_LINES = [] |