fix section before first "%"

oops, need to special-case the first part of the split list.

amusingly, I don't need to special-case zero-length format strings because that will skip the entire loop and output "", which seems correct. (I am also not special-casing zero-length segments because `s[1] == nil` will go into the error handler and that seems fine.
This commit is contained in:
Kistaro Windrider 2023-01-01 12:50:35 -08:00
parent 2264349e72
commit 3516d2855e
Signed by: kistaro
SSH Key Fingerprint: SHA256:TBE2ynfmJqsAf0CP6gsflA0q5X5wD5fVKWPsZ7eVUg8

View File

@ -44,8 +44,13 @@ end
-- %! for tostring(param)
-- which dumps tables
function fmt(f, ...)
local out, i = "", 1
local out, i = "", 0
for s in all(split(f,"%")) do
if i == 0 then
-- before first format directive
out ..= s
i = 1
else
local m = s[1]
if m == "~" then
out ..= "%"
@ -62,6 +67,7 @@ function fmt(f, ...)
end
out ..=sub(s,2)
end
end
return out
end