remove debug print

This commit is contained in:
Redo 2022-11-02 11:42:46 -06:00
parent 6b64e61537
commit 7ea1c56362

View File

@ -344,7 +344,6 @@ local function prefixCode(code, fn) -- fix strings, add line numbers
elseif state=="comment" then
if c=="\n" then state = "code" out("\n") lastnl = true end
elseif state=="commentml" then
print(c)
if c=="/" and cp=="*" then state = "code" end
elseif state=="string" then
if c=="\\" then state = "stringesc"