changeset 49231:1cc18f262eab

(apropos): Restore autoload cookie. Fix error message typo.
author John Paul Wallington <jpw@pobox.com>
date Tue, 14 Jan 2003 20:47:21 +0000
parents 6f94f884d68e
children e69194121f87
files lisp/ChangeLog lisp/apropos.el
diffstat 2 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/ChangeLog	Tue Jan 14 17:49:00 2003 +0000
+++ b/lisp/ChangeLog	Tue Jan 14 20:47:21 2003 +0000
@@ -1,3 +1,8 @@
+2003-01-14  John Paul Wallington  <jpw@shootybangbang.com>
+
+	* apropos.el (apropos): Restore autoload cookie.  Fix error
+	message typo.
+
 2003-01-14  Kim F. Storm  <storm@cua.dk>
 
 	* subr.el (process-put, process-get): New functions.
--- a/lisp/apropos.el	Tue Jan 14 17:49:00 2003 +0000
+++ b/lisp/apropos.el	Tue Jan 14 20:47:21 2003 +0000
@@ -440,6 +440,8 @@
 	  "(not documented)"))
     (error "(error retrieving documentation)")))
 
+
+;;;###autoload
 (defun apropos (apropos-regexp &optional do-all)
   "Show all bound symbols whose names match APROPOS-REGEXP.
 With optional prefix DO-ALL or if `apropos-do-all' is non-nil, also
@@ -473,7 +475,7 @@
 				   (void-function
 				    "(alias for undefined function)")
 				   (error
-				    "(error retrieving function documentation")))
+				    "(error retrieving function documentation)")))
 		       (substring doc 0 (string-match "\n" doc))
 		     "(not documented)"))
 		 (when (boundp symbol)