# HG changeset patch # User Richard M. Stallman # Date 1135632175 0 # Node ID c18efc46beddfd9cd3fd0f3fe3735a7b98a7f724 # Parent 61ed6a33ffffb712ccbb31d8e7ed0a0eb354c278 (apropos): Doc fix. diff -r 61ed6a33ffff -r c18efc46bedd lisp/apropos.el --- a/lisp/apropos.el Mon Dec 26 21:21:04 2005 +0000 +++ b/lisp/apropos.el Mon Dec 26 21:22:55 2005 +0000 @@ -511,21 +511,22 @@ search for matches for that word as a substring. If it is a list of words, search for matches for any two (or more) of those words. -With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, also -show unbound symbols and key bindings, which is a little more -time-consuming. Returns list of symbols and documentation found." +With \\[universal-argument] prefix, or if `apropos-do-all' is non-nil, +consider all symbols (if they match PATTERN). + +Returns list of symbols and documentation found." (interactive (list (apropos-read-pattern "symbol") current-prefix-arg)) (apropos-parse-pattern pattern) (apropos-symbols-internal (apropos-internal apropos-regexp - (and (not do-all) - (not apropos-do-all) - (lambda (symbol) - (or (fboundp symbol) - (boundp symbol) - (facep symbol) - (symbol-plist symbol))))) + (and (not do-all) + (not apropos-do-all) + (lambda (symbol) + (or (fboundp symbol) + (boundp symbol) + (facep symbol) + (symbol-plist symbol))))) (or do-all apropos-do-all))) (defun apropos-symbols-internal (symbols keys &optional text)