util.debug: Add +1 to level when getting locals table, to account for current function

This commit is contained in:
Matthew Wild 2012-04-28 16:21:19 +01:00
parent 04a6860173
commit 463e2326d9

View file

@ -97,7 +97,7 @@ function get_traceback_table(thread, start_level)
levels[(level-start_level)+1] = {
level = level;
info = info;
locals = get_locals_table(level);
locals = get_locals_table(level+1);
upvalues = get_upvalues_table(info.func);
};
end