# HG changeset patch # User John Paul Wallington # Date 1042577241 0 # Node ID 1cc18f262eab0e4d40e4af2b2bea3d9c820880a1 # Parent 6f94f884d68e1ee86d589c6c55723ec1396c97b6 (apropos): Restore autoload cookie. Fix error message typo. diff -r 6f94f884d68e -r 1cc18f262eab lisp/ChangeLog --- 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 + + * apropos.el (apropos): Restore autoload cookie. Fix error + message typo. + 2003-01-14 Kim F. Storm * subr.el (process-put, process-get): New functions. diff -r 6f94f884d68e -r 1cc18f262eab lisp/apropos.el --- 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)