Compare commits

...

2 Commits

Author SHA1 Message Date
e8ed97be9e
might as well offer a shortcut for that too 2023-09-30 14:07:54 -07:00
f4bcd11bed
preserve extra args to puketh
useful for puking to the clipboard instead of the console
2023-09-30 14:07:23 -07:00

View File

@ -327,8 +327,12 @@ function puke(item, indent, seen, hidekey)
end
-- convenience for debugging
function puketh(item)
printh(puke(item))
function puketh(item, ...)
printh(puke(item), ...)
end
function pukeboard(item)
puketh(item, "@clip")
end
function drawgame()