aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-14 05:23:24 +0000
committerRichard M. Stallman1998-05-14 05:23:24 +0000
commit0f2aa0e118094903e79b5acd7b30faafd4bd8615 (patch)
tree8fbf2d59edf0525ad924088a4d4735c253317eda
parent8331e67615c47060ccbe7847f4df0e614f58dd1f (diff)
downloademacs-0f2aa0e118094903e79b5acd7b30faafd4bd8615.tar.gz
emacs-0f2aa0e118094903e79b5acd7b30faafd4bd8615.zip
(describe-key-briefly): When INSERT, put cmd name in `...'.
-rw-r--r--lisp/help.el2
1 files changed, 1 insertions, 1 deletions
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."
240 (if (or (null defn) (integerp defn)) 240 (if (or (null defn) (integerp defn))
241 (princ (format "%s is undefined" key-desc)) 241 (princ (format "%s is undefined" key-desc))
242 (princ (format (if insert 242 (princ (format (if insert
243 "%s (%s)" 243 "`%s' (`%s')"
244 (if (windowp window) 244 (if (windowp window)
245 "%s at that spot runs the command %s" 245 "%s at that spot runs the command %s"
246 "%s runs the command %s")) 246 "%s runs the command %s"))