Fixed bug with loading file contents.

This commit is contained in:
Bruce Hill 2018-04-09 16:33:28 -07:00
parent 57315ef632
commit a8e4ed4ac6
2 changed files with 2 additions and 2 deletions

View File

@ -1188,7 +1188,7 @@ ldb = {
pads.stack.on_select = function(self, stack_index)
local filename, line_no = pads.stack.columns[2][stack_index]:match("^(.*):(%d*)$")
line_no = tonumber(line_no)
show_src(filename, line_no, stack_sources[stack_index])
show_src(filename, line_no, filename and file_cache[filename] or stack_sources[stack_index])
return show_vars(stack_index)
end
pads.stack:select(1)

View File

@ -783,7 +783,7 @@ ldb = {
filename,line_no = pads.stack.columns[2][stack_index]\match("^(.*):(%d*)$")
--filename, line_no = pads.stack.lines[stack_index]\match("[^|]*| ([^:]*):(%d*).*")
line_no = tonumber(line_no)
show_src(filename, line_no, stack_sources[stack_index])
show_src(filename, line_no, filename and file_cache[filename] or stack_sources[stack_index])
show_vars(stack_index)
pads.stack\select(1)