diff options
author | Richard M. Stallman <rms@gnu.org> | 2005-12-26 21:21:04 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2005-12-26 21:21:04 +0000 |
commit | 5ed887d7258de5d8eab4bdac66a708c9223bf19a (patch) | |
tree | a10aa3e0df80dcf04b5e1fe8d394bfe4a6716432 /lisp/apropos.el | |
parent | 6ad4e629c690470435f1e9657b66ec2a5c98ea86 (diff) | |
download | emacs-5ed887d7258de5d8eab4bdac66a708c9223bf19a.tar.gz |
(apropos, apropos-value): Doc fix.
(apropos-documentation): Doc fix.
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 4e5109c1efb..c4ce2d1fa3c 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -502,7 +502,10 @@ while a list of strings is used as a word list." ;;;###autoload (defun apropos (pattern &optional do-all) - "Show all bound symbols whose names match PATTERN. + "Show all meaningful Lisp symbols whose names match PATTERN. +Symbols are shown if they are defined as functions, variables, or +faces, or if they have nonempty property lists. + PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, @@ -571,7 +574,7 @@ time-consuming. Returns list of symbols and documentation found." ;;;###autoload (defun apropos-value (pattern &optional do-all) - "Show all symbols whose value's printed image matches PATTERN. + "Show all symbols whose value's printed representation matches PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, @@ -616,7 +619,7 @@ Returns list of symbols and values found." ;;;###autoload (defun apropos-documentation (pattern &optional do-all) - "Show symbols whose documentation contain matches for PATTERN. + "Show symbols whose documentation contains matches for PATTERN. PATTERN can be a word, a list of words (separated by spaces), or a regexp (using some regexp special characters). If it is a word, search for matches for that word as a substring. If it is a list of words, |