aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/apropos.el9
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.
506Symbols are shown if they are defined as functions, variables, or
507faces, or if they have nonempty property lists.
508
506PATTERN can be a word, a list of words (separated by spaces), 509PATTERN can be a word, a list of words (separated by spaces),
507or a regexp (using some regexp special characters). If it is a word, 510or a regexp (using some regexp special characters). If it is a word,
508search for matches for that word as a substring. If it is a list of words, 511search 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.
575PATTERN can be a word, a list of words (separated by spaces), 578PATTERN can be a word, a list of words (separated by spaces),
576or a regexp (using some regexp special characters). If it is a word, 579or a regexp (using some regexp special characters). If it is a word,
577search for matches for that word as a substring. If it is a list of words, 580search 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.
620PATTERN can be a word, a list of words (separated by spaces), 623PATTERN can be a word, a list of words (separated by spaces),
621or a regexp (using some regexp special characters). If it is a word, 624or a regexp (using some regexp special characters). If it is a word,
622search for matches for that word as a substring. If it is a list of words, 625search for matches for that word as a substring. If it is a list of words,