summaryrefslogtreecommitdiff
path: root/cider-stacktrace.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2014-09-03 17:00:57 +0300
committerBozhidar Batsov <bozhidar@tradeo.com>2014-09-03 17:00:57 +0300
commit95926e61ee74d0a24e637d0c88ff9b36dab93bc0 (patch)
tree8e0aa65b61aca98bed1747d89ca1f9ae8c7918ef /cider-stacktrace.el
parent2347de0a2716c98792f1a5ed6547fde869f66ed9 (diff)
cider-jump -> cider-jump-to-var
Diffstat (limited to 'cider-stacktrace.el')
-rw-r--r--cider-stacktrace.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-stacktrace.el b/cider-stacktrace.el
index a52934f2..49b7306b 100644
--- a/cider-stacktrace.el
+++ b/cider-stacktrace.el
@@ -409,12 +409,12 @@ it wraps to 0."
(cider--jump-to-loc-from-info info t)))
(defun cider-stacktrace-jump ()
- "Like `cider-jump', but uses the stack frame source at point, if available."
+ "Like `cider-jump-to-var', but uses the stack frame source at point, if available."
(interactive)
(let ((button (button-at (point))))
(if (and button (button-get button 'line))
(cider-stacktrace-navigate button)
- (call-interactively 'cider-jump))))
+ (call-interactively 'cider-jump-to-var))))
;; Rendering