diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-30 12:54:43 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-30 12:54:43 +0100 |
commit | 613c9c22f839452aae7cf64ae641b668451ec412 (patch) | |
tree | 1aa9248041959d0fd7014a16fc5a7a51cdfe925c | |
parent | 59f7938cc28f1b6ab2ab656811470b3847a001f8 (diff) |
Fix faulty script
-rwxr-xr-x | scripts/gen-pres | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-pres b/scripts/gen-pres index 8846f51..6106b99 100755 --- a/scripts/gen-pres +++ b/scripts/gen-pres @@ -28,7 +28,7 @@ BEGIN { printf "trX { td .missing colspan=\"2\" {-%s}", $3 split($2, a, / /) for (i = 1; i <= length(a); i++) - printf "td .%s colspan=\"1\" {-%s %s}}", getcls(a[i]), $1, getsup(i) + printf "td .%s colspan=\"1\" {-%s %s}", getcls(a[i]), $1, getsup(i) print "}" } |