summaryrefslogtreecommitdiff
path: root/cider-classpath.el
diff options
context:
space:
mode:
authorAndriy Kmit <dev@madand.net>2016-09-26 06:57:12 +0300
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2016-09-26 06:57:12 +0300
commitb9e042607601d14ecc1c7144dec0d3423a9c71f3 (patch)
treea2e688064a49c1aadc6466d363621fd482549ef2 /cider-classpath.el
parent6d6595a06c3b075635b91540bd82a117db9a3f2f (diff)
Fix usage of RET in several keymaps (#1852)
Replace several occurrences of [return] in keymap definitions with (kbd "RET"). Also remove now redundant binding for `C-M`.
Diffstat (limited to 'cider-classpath.el')
-rw-r--r--cider-classpath.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-classpath.el b/cider-classpath.el
index edc0bfb6..19e6d1b2 100644
--- a/cider-classpath.el
+++ b/cider-classpath.el
@@ -34,7 +34,7 @@
(defvar cider-classpath-mode-map
(let ((map (make-sparse-keymap)))
(set-keymap-parent map cider-popup-buffer-mode-map)
- (define-key map [return] #'cider-classpath-operate-on-point)
+ (define-key map (kbd "RET") #'cider-classpath-operate-on-point)
(define-key map "n" #'next-line)
(define-key map "p" #'previous-line)
map))