diff options
| author | Richard M. Stallman | 1998-05-14 05:23:24 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1998-05-14 05:23:24 +0000 |
| commit | 0f2aa0e118094903e79b5acd7b30faafd4bd8615 (patch) | |
| tree | 8fbf2d59edf0525ad924088a4d4735c253317eda | |
| parent | 8331e67615c47060ccbe7847f4df0e614f58dd1f (diff) | |
| download | emacs-0f2aa0e118094903e79b5acd7b30faafd4bd8615.tar.gz emacs-0f2aa0e118094903e79b5acd7b30faafd4bd8615.zip | |
(describe-key-briefly): When INSERT, put cmd name in `...'.
| -rw-r--r-- | lisp/help.el | 2 |
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")) |