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/nt | |
parent | 0f86c382cfdc6c742c62457bf6cbf1b079544a16 (diff) |
Fix alignment of autogenerated lookup table elements
Diffstat (limited to 'gen/prop/nt')
-rwxr-xr-x | gen/prop/nt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gen/prop/nt b/gen/prop/nt index 569cc18..a55ea45 100755 --- a/gen/prop/nt +++ b/gen/prop/nt @@ -37,7 +37,8 @@ END { for (i = 0; i < 0x100; i++) { if (i % 8 == 0) printf "\t" - printf "%7s,%s", props[i] ? props[i] : "NT_NONE", i % 8 == 7 ? "\n" : " " + printf "%-8s%s", (props[i] ? props[i] : "NT_NONE") ",", \ + i % 8 == 7 ? "\n" : " " } print "};" print "" @@ -65,4 +66,4 @@ END { print "\treturn ch < lengthof(lookup_lat1) ? lookup_lat1[ch] : mlib_lookup(ch);" print "}" } -' data/DerivedNumericType.txt +' data/DerivedNumericType.txt | sed 's/\s*$//' |