diff options
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 |