From ada8b459570281f29b9c613c6a6e6e18669ed5a1 Mon Sep 17 00:00:00 2001 From: Nicolas Petton Date: Thu, 26 Jul 2018 17:00:41 +0200 Subject: [PATCH] Fix #3 (gitlab issue) * indium-debugger-frames.el (indium-debugger-frames-list): Use original locations when displaying the list of frames. --- indium-debugger-frames.el | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/indium-debugger-frames.el b/indium-debugger-frames.el index d3d3f01..89457c8 100644 --- a/indium-debugger-frames.el +++ b/indium-debugger-frames.el @@ -57,9 +57,12 @@ CURRENT-FRAME is the current stack frame in the debugger." (indium-render-header "Debugger stack") (newline 2) (seq-doseq (frame frames) - (indium-render-frame frame - (indium-script-url (indium-frame-script frame)) - (eq current-frame frame)) + (indium-render-frame + frame + (indium-location-file (indium-script-original-location + (indium-frame-script frame) + (indium-frame-location frame))) + (eq current-frame frame)) (newline)))) (defun indium-debugger-frames-select-frame (frame)