]> git.eshelyaron.com Git - emacs.git/commitdiff
Add face to key bindings suggested by M-x
authorStefan Kangas <stefankangas@gmail.com>
Tue, 15 Nov 2022 03:17:58 +0000 (04:17 +0100)
committerStefan Kangas <stefankangas@gmail.com>
Tue, 15 Nov 2022 03:19:36 +0000 (04:19 +0100)
* lisp/simple.el (execute-extended-command--describe-binding-msg):
Use 'help-key-binding' face for keybinding.

lisp/simple.el

index a53b7b1d0df9f3d7bc6d32feee4f570a21ca34d2..0f44b14948c370175cdc412d663325c1e2c241ef 100644 (file)
@@ -2494,9 +2494,10 @@ Also see `suggest-key-bindings'."
 (defun execute-extended-command--describe-binding-msg (function binding shorter)
   (format-message "You can run the command `%s' with %s"
                   function
-                  (cond (shorter (concat "M-x " shorter))
-                        ((stringp binding) binding)
-                        (t (key-description binding)))))
+                  (propertize (cond (shorter (concat "M-x " shorter))
+                                    ((stringp binding) binding)
+                                    (t (key-description binding)))
+                              'face 'help-key-binding)))
 
 (defun execute-extended-command (prefixarg &optional command-name typed)
   "Read a command name, then read the arguments and call the command.