Recompile

This commit is contained in:
Bruce Hill 2018-11-10 00:29:25 -08:00
parent 1b9d57844e
commit 65ec3f597f

View File

@ -236,7 +236,7 @@ tree_to_nomsu = function(tree)
nomsu:append("\n\n" .. tostring(("~"):rep(80)) .. "\n\n") nomsu:append("\n\n" .. tostring(("~"):rep(80)) .. "\n\n")
end end
if chunk.type == "Block" then if chunk.type == "Block" then
nomsu:append(NomsuCode:from(chunk.source, unpack(tree_to_nomsu(chunk).bits, 2))) nomsu:append(NomsuCode:from(chunk.source, table.unpack(tree_to_nomsu(chunk).bits, 2)))
else else
nomsu:append(tree_to_nomsu(chunk)) nomsu:append(tree_to_nomsu(chunk))
end end