Fix traceback in gears.protected_call (#1178)
The traceback should not include the error handler because this is confusing. Signed-off-by: Uli Schlachter <psychon@znc.in>
This commit is contained in:
parent
289dfd1615
commit
ed3aac711d
|
@ -13,7 +13,7 @@ local xpcall = xpcall
|
||||||
local protected_call = {}
|
local protected_call = {}
|
||||||
|
|
||||||
local function error_handler(err)
|
local function error_handler(err)
|
||||||
gdebug.print_error(traceback("Error during a protected call: " .. tostring(err)))
|
gdebug.print_error(traceback("Error during a protected call: " .. tostring(err), 2))
|
||||||
end
|
end
|
||||||
|
|
||||||
local function handle_result(success, ...)
|
local function handle_result(success, ...)
|
||||||
|
|
Loading…
Reference in New Issue