summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-02-05 20:58:39 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2016-02-05 20:58:39 +0200
commit55aba3d7beeb8bc635e1e51e85dcc05e99dc37ef (patch)
treea103147521cc9120eb412456abd6fc6b000f96cb /cider-test.el
parent64391e5ff0fe04598ee68d1a5dac39e233b0e0b1 (diff)
Don't mark keymaps as functions
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-test.el b/cider-test.el
index 05c6ed99..50e17445 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -127,7 +127,7 @@
(defvar cider-test-report-mode-map
(let ((map (make-sparse-keymap)))
- (define-key map (kbd "C-c t") #'cider-test-commands-map)
+ (define-key map (kbd "C-c t") 'cider-test-commands-map)
(define-key map (kbd "M-p") #'cider-test-previous-result)
(define-key map (kbd "M-n") #'cider-test-next-result)
(define-key map (kbd "M-.") #'cider-test-jump)