diff options
| author | Richard M. Stallman | 1997-08-04 03:57:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1997-08-04 03:57:04 +0000 |
| commit | eea844b25edca1b87d09f8d248e1e870def88a7d (patch) | |
| tree | 25d40b7b64dd41fbb29438a89d8bf0de46437619 | |
| parent | cf66807ecde2df70eefee5d52271c102e2695033 (diff) | |
| download | emacs-eea844b25edca1b87d09f8d248e1e870def88a7d.tar.gz emacs-eea844b25edca1b87d09f8d248e1e870def88a7d.zip | |
(describe-function): Use " is " instead of colon.
| -rw-r--r-- | lisp/help.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 42fd5d29112..ab3e0d096ab 100644 --- a/lisp/help.el +++ b/lisp/help.el | |||
| @@ -519,7 +519,9 @@ C-w Display information on absence of warranty for GNU Emacs." | |||
| 519 | (if function | 519 | (if function |
| 520 | (with-output-to-temp-buffer "*Help*" | 520 | (with-output-to-temp-buffer "*Help*" |
| 521 | (prin1 function) | 521 | (prin1 function) |
| 522 | (princ ": ") | 522 | ;; Use " is " instead of a colon so that |
| 523 | ;; it is easier to get out the function name using forward-sexp. | ||
| 524 | (princ " is ") | ||
| 523 | (let* ((def (symbol-function function)) | 525 | (let* ((def (symbol-function function)) |
| 524 | file-name | 526 | file-name |
| 525 | (beg (if (commandp def) "an interactive " "a "))) | 527 | (beg (if (commandp def) "an interactive " "a "))) |