diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-09 23:25:42 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-09 23:25:42 +0200 |
commit | 1396c95520f4fbafb045c1a5bb4b9be2dfd04072 (patch) | |
tree | 8b46e3f43e0a518f8b63af731775bcdf94b4099b /gen/prop/ea | |
parent | 0f86c382cfdc6c742c62457bf6cbf1b079544a16 (diff) |
Fix alignment of autogenerated lookup table elements
Diffstat (limited to 'gen/prop/ea')
-rwxr-xr-x | gen/prop/ea | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gen/prop/ea b/gen/prop/ea index 81842c6..6bf1291 100755 --- a/gen/prop/ea +++ b/gen/prop/ea @@ -33,7 +33,8 @@ END { for (i = 0; i < 0x100; i++) { if (i % 8 == 0) printf "\t" - printf "%5s,%s", props[i] ? props[i] : "EA_NA", i % 8 == 7 ? "\n" : " " + printf "%-6s%s", (props[i] ? props[i] : "EA_NA") ",", \ + i % 8 == 7 ? "\n" : " " } print "};" print "" @@ -61,4 +62,4 @@ END { print "\treturn ch < lengthof(lookup_lat1) ? lookup_lat1[ch] : mlib_lookup(ch);" print "}" } -' data/DerivedEastAsianWidth.txt +' data/DerivedEastAsianWidth.txt | sed 's/\s*$//' |