Skip to content

Commit

Permalink
Fix #3 (gitlab issue)
Browse files Browse the repository at this point in the history
* indium-debugger-frames.el (indium-debugger-frames-list): Use original
  locations when displaying the list of frames.
  • Loading branch information
NicolasPetton committed Jul 26, 2018
1 parent a1f63ae commit ada8b45
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions indium-debugger-frames.el
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit ada8b45

Please sign in to comment.