]> git.eshelyaron.com Git - emacs.git/commitdiff
(apropos-print): Use buffer *Apropos*, not *Help*.
authorRichard M. Stallman <rms@gnu.org>
Fri, 10 Nov 1995 17:08:38 +0000 (17:08 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 10 Nov 1995 17:08:38 +0000 (17:08 +0000)
(apropos-follow): Don't print a "how to get back" message.

(apropos-follow): Fix error message.

lisp/apropos.el

index 4a5e16391a84f29894aed5b94d9d5be50f2b0c90..a51db66787400bac3e74353515b753c9d8c5b77a 100644 (file)
@@ -421,7 +421,7 @@ found."
         (symbolp apropos-label-face)
         (setq apropos-label-face `(face ,apropos-label-face
                                         mouse-face highlight)))
-    (with-output-to-temp-buffer "*Help*"
+    (with-output-to-temp-buffer "*Apropos*"
       (let ((p apropos-accumulator)
            (old-buffer (current-buffer))
            symbol item point1 point2)
@@ -537,7 +537,7 @@ found."
                           (1+ (next-single-property-change (point) 'item)))))
                    'item)))
     (if (consp item)
-       (error "%s is just a lonely smbol." (car item)))
+       (error "%s is just a lonely symbol" (car item)))
     (while (if (setq action-point
                     (next-single-property-change (point) 'action))
               (<= action-point point))
@@ -546,10 +546,7 @@ found."
     (funcall
      (prog1 (get-text-property (or action action-point (point)) 'action)
        (if other (set-buffer other)))
-     item))
-  (message "%sype %s (undo) to get back to apropos-listing."
-          (if other "In *Help* buffer t" "T")
-          (key-description (where-is-internal 'undo nil 1))))
+     item)))