mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
Remove all trailing whitespace
This commit is contained in:
parent
96ec63e3c3
commit
1d833bb807
116 changed files with 798 additions and 798 deletions
|
@ -93,14 +93,14 @@ function get_traceback_table(thread, start_level)
|
|||
info = debug.getinfo(level+1);
|
||||
end
|
||||
if not info then break; end
|
||||
|
||||
|
||||
levels[(level-start_level)+1] = {
|
||||
level = level;
|
||||
info = info;
|
||||
locals = get_locals_table(level+1);
|
||||
upvalues = get_upvalues_table(info.func);
|
||||
};
|
||||
end
|
||||
end
|
||||
return levels;
|
||||
end
|
||||
|
||||
|
@ -137,12 +137,12 @@ function _traceback(thread, message, level)
|
|||
level = level or 1;
|
||||
|
||||
message = message and (message.."\n") or "";
|
||||
|
||||
|
||||
-- +3 counts for this function, and the pcall() and wrapper above us
|
||||
local levels = get_traceback_table(thread, level+3);
|
||||
|
||||
|
||||
local last_source_desc;
|
||||
|
||||
|
||||
local lines = {};
|
||||
for nlevel, level in ipairs(levels) do
|
||||
local info = level.info;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue