Mercurial > emacs
changeset 19124:e5e8552b076a
(describe-function): Use " is " instead of colon.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 04 Aug 1997 03:57:04 +0000 |
parents | 056324b1fa58 |
children | 8aad7cef6fc0 |
files | lisp/help.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Mon Aug 04 03:42:58 1997 +0000 +++ b/lisp/help.el Mon Aug 04 03:57:04 1997 +0000 @@ -519,7 +519,9 @@ (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 ")))