Comment an odd TCE hack in the REPL.
This commit is contained in:
parent
2ad7ac9a5f
commit
634ff9ee67
|
@ -335,6 +335,7 @@ local function run_command(line)
|
|||
|
||||
local command, command_arg = match_command(line)
|
||||
if command then
|
||||
-- unpack({...}) prevents tail call elimination so the stack frame indices are predictable.
|
||||
return unpack({command(command_arg)})
|
||||
else
|
||||
dbg.writeln(COLOR_RED.."Error:"..COLOR_RESET.." command '%s' not recognized", line)
|
||||
|
|
Loading…
Reference in New Issue