summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2016-01-12 07:58:06 -0800
committerJohn Wiegley <johnw@newartisans.com>2016-01-12 07:58:06 -0800
commit3ce3b3a98c65f365d5e95258c28b9c9f751f41b0 (patch)
tree71e65ef4ec25b0fa46b6b34b53181a2fed22c489
parentb4ec5abad2b8b1e2585daa644c2b364da4b08546 (diff)
downloademacs-3ce3b3a98c.tar.gz
Add a missing comma
-rw-r--r--lisp/use-package/bind-key.el2
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)