Comment an odd TCE hack in the REPL.

This commit is contained in:
slembcke 2015-12-10 13:26:47 -06:00
parent 2ad7ac9a5f
commit 634ff9ee67
1 changed files with 1 additions and 0 deletions

View File

@ -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)