diff options
author | John Wiegley <johnw@newartisans.com> | 2016-01-12 07:58:06 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2016-01-12 07:58:06 -0800 |
commit | 3ce3b3a98c65f365d5e95258c28b9c9f751f41b0 (patch) | |
tree | 71e65ef4ec25b0fa46b6b34b53181a2fed22c489 /lisp/use-package | |
parent | b4ec5abad2b8b1e2585daa644c2b364da4b08546 (diff) | |
download | emacs-3ce3b3a98c65f365d5e95258c28b9c9f751f41b0.tar.gz emacs-3ce3b3a98c65f365d5e95258c28b9c9f751f41b0.tar.bz2 emacs-3ce3b3a98c65f365d5e95258c28b9c9f751f41b0.zip |
Add a missing comma
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 5c05486c815..ecd0ba1a157 100644 --- a/lisp/use-package/bind-key.el +++ b/lisp/use-package/bind-key.el @@ -188,7 +188,7 @@ See `bind-key' for more details." ;;;###autoload (defmacro bind-key* (key-name command &optional predicate) "Similar to `bind-key', but overrides any mode-specific bindings." - `(bind-key ,key-name ,command override-global-map predicate)) + `(bind-key ,key-name ,command override-global-map ,predicate)) ;;;###autoload (defmacro bind-keys (&rest args) |