We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0feb6c3 commit c02b1ccCopy full SHA for c02b1cc
cider-debug.el
@@ -700,9 +700,9 @@ TARGET is inside it. The returned list is suitable for use in
700
(user-error "`cider-debug-move-here' only makes sense during a debug session"))
701
(let ((here (point)))
702
(nrepl-dbind-response cider--debug-mode-response (line column)
703
- (if (and line column)
+ (if (and line column (buffer-file-name))
704
(progn ;; Get to the proper line & column in the file
705
- (forward-line (- line 1 (line-number-at-pos)))
+ (forward-line (1- (- line (line-number-at-pos))))
706
(move-to-column column))
707
(beginning-of-defun))
708
;; Is HERE inside the sexp being debugged?
0 commit comments