From 053a1514a1ec1690b4a5e4c07618fc8c4b083359 Mon Sep 17 00:00:00 2001 From: Noam Postavsky Date: Sun, 13 Apr 2014 23:59:36 -0400 Subject: [PATCH] fix typo Actually the reader accepts (list 'a'b) = (list 'a 'b); it still looks wrong. --- lisp/use-package/bind-key.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 5ef7570cdef..bb4bf13f518 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -186,7 +186,7 @@ function symbol (unquoted)." `(progn ,@(when prefix-map `((defvar ,prefix-map) - ,@(when doc `((put ',prefix-map'variable-documentation ,doc))) + ,@(when doc `((put ',prefix-map 'variable-documentation ,doc))) (define-prefix-command ',prefix-map) (bind-key ,prefix ',prefix-map ,@(when map (list map))))) ,@(mapcar (lambda (form) `(bind-key ,(if prefix -- 2.39.2