projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5f1e8b6
)
Don't macroexpand bind-keys, leave that to the evaluator
author
John Wiegley
<johnw@newartisans.com>
Fri, 1 Dec 2017 08:45:43 +0000
(
00:45
-0800)
committer
John Wiegley
<johnw@newartisans.com>
Fri, 1 Dec 2017 08:45:43 +0000
(
00:45
-0800)
lisp/use-package/use-package.el
patch
|
blob
|
history
diff --git
a/lisp/use-package/use-package.el
b/lisp/use-package/use-package.el
index 044d79d4a957ea561b81295f94799b6c9a2ea15a..c6c83f7e3d28fd7d4a5f68edd0aebf3704e65ed2 100644
(file)
--- a/
lisp/use-package/use-package.el
+++ b/
lisp/use-package/use-package.el
@@
-1097,9
+1097,8
@@
representing symbols (that may need to be autloaded)."
(use-package-plist-maybe-put rest :defer t))
(use-package-plist-append state :commands commands))
`((ignore
- ,(macroexpand
- `(,(if bind-macro bind-macro 'bind-keys)
- :package ,name ,@nargs)))))))
+ (,(if bind-macro bind-macro 'bind-keys)
+ :package ,name ,@nargs))))))
(defun use-package-handler/:bind* (name keyword arg rest state)
(use-package-handler/:bind name keyword arg rest state 'bind-keys*))