summaryrefslogtreecommitdiff
path: root/cider-classpath.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2015-01-24 23:13:23 +0200
committerBozhidar Batsov <bozhidar@tradeo.com>2015-01-24 23:13:23 +0200
commit8d909465422888c89f55eda07c659dbc8ed2f64b (patch)
tree061e3387fbbda1e79438a88cf952ed0e287e7cc4 /cider-classpath.el
parent72e8e1926c9859b009221552483c2590eb7b26f3 (diff)
Use #' where appropriate
Diffstat (limited to 'cider-classpath.el')
-rw-r--r--cider-classpath.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/cider-classpath.el b/cider-classpath.el
index 7a3d929b..8ef4334d 100644
--- a/cider-classpath.el
+++ b/cider-classpath.el
@@ -31,14 +31,14 @@
(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 "n" 'next-line)
- (define-key map "p" 'previous-line)
+ (define-key map [return] #'cider-classpath-operate-on-point)
+ (define-key map "n" #'next-line)
+ (define-key map "p" #'previous-line)
map))
(defvar cider-classpath-mouse-map
(let ((map (make-sparse-keymap)))
- (define-key map [mouse-1] 'cider-classpath-handle-mouse)
+ (define-key map [mouse-1] #'cider-classpath-handle-mouse)
map))
(define-derived-mode cider-classpath-mode special-mode "classpath"