util.debug: Add catch for an "error in error handling"

This commit is contained in:
Matthew Wild 2012-03-22 15:08:21 +00:00
parent 995f757ab2
commit 5030d1d07c

View file

@ -88,7 +88,15 @@ function get_traceback_table(thread, start_level)
return levels;
end
function debug.traceback(thread, message, level)
function debug.traceback(...)
local ok, ret = pcall(debug._traceback, ...);
if not ok then
return "Error in error handling: "..ret;
end
return ret;
end
function debug._traceback(thread, message, level)
if type(thread) ~= "thread" then
thread, message, level = coroutine.running(), thread, message;
end