Add a missing comma

This commit is contained in:
John Wiegley 2016-01-12 07:58:06 -08:00
parent b4ec5abad2
commit 3ce3b3a98c

View file

@ -188,7 +188,7 @@ See `bind-key' for more details."
;;;###autoload ;;;###autoload
(defmacro bind-key* (key-name command &optional predicate) (defmacro bind-key* (key-name command &optional predicate)
"Similar to `bind-key', but overrides any mode-specific bindings." "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 ;;;###autoload
(defmacro bind-keys (&rest args) (defmacro bind-keys (&rest args)