summaryrefslogtreecommitdiff
path: root/lisp/help.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-08-04 03:57:04 +0000
committerRichard M. Stallman <rms@gnu.org>1997-08-04 03:57:04 +0000
commit9a5bf8524c3e14e0a62749a9f42e32539bc15be8 (patch)
treedfd364b7785766a24d6956bcb910a7dd6a8ec8a5 /lisp/help.el
parentdf2aad9fa183f6423c8f170a8c926f2fb9d863e6 (diff)
downloademacs-9a5bf8524c3e14e0a62749a9f42e32539bc15be8.tar.gz
(describe-function): Use " is " instead of colon.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el4
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."
(if function
(with-output-to-temp-buffer "*Help*"
(prin1 function)
- (princ ": ")
+ ;; Use " is " instead of a colon so that
+ ;; it is easier to get out the function name using forward-sexp.
+ (princ " is ")
(let* ((def (symbol-function function))
file-name
(beg (if (commandp def) "an interactive " "a ")))