Skip to content

Commit 0feb6c3

Browse files
committed
Fix an off-by-one error in cider-debug-move-here
1 parent bac615c commit 0feb6c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cider-debug.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@ TARGET is inside it. The returned list is suitable for use in
702702
(nrepl-dbind-response cider--debug-mode-response (line column)
703703
(if (and line column)
704704
(progn ;; Get to the proper line & column in the file
705-
(forward-line (- line (line-number-at-pos)))
705+
(forward-line (- line 1 (line-number-at-pos)))
706706
(move-to-column column))
707707
(beginning-of-defun))
708708
;; Is HERE inside the sexp being debugged?

0 commit comments

Comments
 (0)