diff options
author | Chong Yidong <cyd@gnu.org> | 2012-04-23 20:37:55 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-04-23 20:37:55 +0800 |
commit | 775c916bd7fb488b1a6cb907ee5522c0279d435c (patch) | |
tree | b3e0e63113ecbee33a417424d223441a6df95632 /lisp/apropos.el | |
parent | 2df41f9c6f22d4e001082df4301c73dccfd01ef0 (diff) | |
download | emacs-775c916bd7fb488b1a6cb907ee5522c0279d435c.tar.gz |
Remove non-option variable handling from customize-apropos
and enable use of word lists for customize-apropos-options etc.
* lisp/apropos.el (apropos-read-pattern): Make prompt less cryptic.
* lisp/cus-edit.el (customize-apropos, customize-apropos-options):
Disable matching of non-option variables.
(customize-option, customize-option-other-window)
(customize-changed-options): Doc fix.
(customize-apropos-options, customize-apropos-faces)
(customize-apropos-groups): Use apropos-read-pattern.
Fixes: debbugs:11176
Diffstat (limited to 'lisp/apropos.el')
-rw-r--r-- | lisp/apropos.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/apropos.el b/lisp/apropos.el index 56b27e9b9b4..6bf396a1632 100644 --- a/lisp/apropos.el +++ b/lisp/apropos.el @@ -333,7 +333,7 @@ literally, or a string which is used as a regexp to search for. SUBJECT is a string that is included in the prompt to identify what kind of objects to search." (let ((pattern - (read-string (concat "Apropos " subject " (word list or regexp): ")))) + (read-string (concat "Search for " subject " (word list or regexp): ")))) (if (string-equal (regexp-quote pattern) pattern) ;; Split into words (split-string pattern "[ \t]+") |