Function: execute-extended-command--describe-binding-msg
execute-extended-command--describe-binding-msg is a byte-compiled
function defined in simple.el.gz.
Signature
(execute-extended-command--describe-binding-msg FUNCTION BINDING SHORTER)
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defun execute-extended-command--describe-binding-msg (function binding shorter)
(format-message "You can run the command `%s' with %s"
function
(propertize (cond (shorter (concat "M-x " shorter))
((stringp binding) binding)
(t (key-description binding)))
'face 'help-key-binding)))