]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-function): Use " is " instead of colon.
authorRichard M. Stallman <rms@gnu.org>
Mon, 4 Aug 1997 03:57:04 +0000 (03:57 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 4 Aug 1997 03:57:04 +0000 (03:57 +0000)
lisp/help.el

index 42fd5d29112249b7cc34f46c79a66ebce1e5ce8f..ab3e0d096ab86237f4840e9d4d3006ad16d9def5 100644 (file)
@@ -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 ")))