summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorArtur Malabarba <bruce.connor.am@gmail.com>2015-07-02 23:49:49 +0100
committerArtur Malabarba <bruce.connor.am@gmail.com>2015-07-02 23:49:49 +0100
commit685d0af4a474a24af6648731315a08893a59756f (patch)
tree31b4d041012258618741cb086caa1a0deab7cbec /cider-debug.el
parentc97ed6442083f0c96925c519b1e1a05b212de084 (diff)
Fix navigation bug introduced with map handling
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-debug.el b/cider-debug.el
index 649fbb44..27f0d429 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -304,7 +304,7 @@ sexp."
;; String coordinates are map keys.
(if (stringp next)
(cider--debug-goto-keyval next)
- (clojure-forward-logical-sexp (pop coordinates))))
+ (clojure-forward-logical-sexp next)))
;; If that extra pop was the last coordinate, this represents the
;; entire #(...), so we should move back out.
(backward-up-list)))