From: Richard M. Stallman Date: Thu, 14 May 1998 05:23:24 +0000 (+0000) Subject: (describe-key-briefly): When INSERT, put cmd name in `...'. X-Git-Tag: emacs-20.3~1017 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0f2aa0e118094903e79b5acd7b30faafd4bd8615;p=emacs.git (describe-key-briefly): When INSERT, put cmd name in `...'. --- diff --git a/lisp/help.el b/lisp/help.el index fdd5c278519..4357963baa5 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -240,7 +240,7 @@ If INSERT (the prefix arg) is non-nil, insert the message in the buffer." (if (or (null defn) (integerp defn)) (princ (format "%s is undefined" key-desc)) (princ (format (if insert - "%s (%s)" + "`%s' (`%s')" (if (windowp window) "%s at that spot runs the command %s" "%s runs the command %s"))