diff options
| author | Richard M. Stallman | 2005-12-26 21:21:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-26 21:21:04 +0000 |
| commit | 2a4ec7e1ef5cbb34bf65c888ff600787ec4654b2 (patch) | |
| tree | efde3c3398153e38f2a299ab3874b2beba8179ac | |
| parent | 119f6f171a4ee6fa2c67184b36d4ee43296a8cfd (diff) | |
| download | emacs-2a4ec7e1ef5cbb34bf65c888ff600787ec4654b2.tar.gz emacs-2a4ec7e1ef5cbb34bf65c888ff600787ec4654b2.zip | |
(apropos, apropos-value): Doc fix.
(apropos-documentation): Doc fix.
| -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." | |||
| 502 | 502 | ||
| 503 | ;;;###autoload | 503 | ;;;###autoload |
| 504 | (defun apropos (pattern &optional do-all) | 504 | (defun apropos (pattern &optional do-all) |
| 505 | "Show all bound symbols whose names match PATTERN. | 505 | "Show all meaningful Lisp symbols whose names match PATTERN. |
| 506 | Symbols are shown if they are defined as functions, variables, or | ||
| 507 | faces, or if they have nonempty property lists. | ||
| 508 | |||
| 506 | PATTERN can be a word, a list of words (separated by spaces), | 509 | PATTERN can be a word, a list of words (separated by spaces), |
| 507 | or a regexp (using some regexp special characters). If it is a word, | 510 | or a regexp (using some regexp special characters). If it is a word, |
| 508 | search for matches for that word as a substring. If it is a list of words, | 511 | 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." | |||
| 571 | 574 | ||
| 572 | ;;;###autoload | 575 | ;;;###autoload |
| 573 | (defun apropos-value (pattern &optional do-all) | 576 | (defun apropos-value (pattern &optional do-all) |
| 574 | "Show all symbols whose value's printed image matches PATTERN. | 577 | "Show all symbols whose value's printed representation matches PATTERN. |
| 575 | PATTERN can be a word, a list of words (separated by spaces), | 578 | PATTERN can be a word, a list of words (separated by spaces), |
| 576 | or a regexp (using some regexp special characters). If it is a word, | 579 | or a regexp (using some regexp special characters). If it is a word, |
| 577 | search for matches for that word as a substring. If it is a list of words, | 580 | 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." | |||
| 616 | 619 | ||
| 617 | ;;;###autoload | 620 | ;;;###autoload |
| 618 | (defun apropos-documentation (pattern &optional do-all) | 621 | (defun apropos-documentation (pattern &optional do-all) |
| 619 | "Show symbols whose documentation contain matches for PATTERN. | 622 | "Show symbols whose documentation contains matches for PATTERN. |
| 620 | PATTERN can be a word, a list of words (separated by spaces), | 623 | PATTERN can be a word, a list of words (separated by spaces), |
| 621 | or a regexp (using some regexp special characters). If it is a word, | 624 | or a regexp (using some regexp special characters). If it is a word, |
| 622 | search for matches for that word as a substring. If it is a list of words, | 625 | search for matches for that word as a substring. If it is a list of words, |