diff options
author | John Wiegley <johnw@newartisans.com> | 2016-02-26 19:08:31 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2016-02-26 19:08:31 -0500 |
commit | 8e128b29f5b84be6a287808eca0dc19dc80e627a (patch) | |
tree | 7888884a04e520a73c8804effad1fb9bedcc56e8 /lisp/use-package | |
parent | 6ca19531bbfecab5aca380ba80b15896d39bc173 (diff) | |
parent | b0b5cfbfb26bbc18d36d7ea8cd90bd665f521d9b (diff) | |
download | emacs-8e128b29f5b84be6a287808eca0dc19dc80e627a.tar.gz emacs-8e128b29f5b84be6a287808eca0dc19dc80e627a.tar.bz2 emacs-8e128b29f5b84be6a287808eca0dc19dc80e627a.zip |
Merge pull request from ljos/master
Quote variable in bind-keys*
GitHub-reference: https://github.com/jwiegley/use-package/issues/325
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/bind-key.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/bind-key.el b/lisp/use-package/bind-key.el index 7d702bc6f9c..b63c34a1976 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -299,7 +299,7 @@ function symbol (unquoted)." ;;;###autoload (defmacro bind-keys* (&rest args) (macroexp-progn - (bind-keys-form (cons :map (cons override-global-map args))))) + (bind-keys-form `(:map override-global-map ,@args)))) (defun get-binding-description (elem) (cond |