summaryrefslogtreecommitdiff
path: root/lisp/cus-edit.el
diff options
context:
space:
mode:
authorLuc Teirlinck <teirllm@auburn.edu>2005-12-13 03:46:02 +0000
committerLuc Teirlinck <teirllm@auburn.edu>2005-12-13 03:46:02 +0000
commit0322b9c3a117afc983baa2384da6f71aa87421f1 (patch)
tree5c9a842eea0a537c802b1216ed2b00b2ee6074cd /lisp/cus-edit.el
parent2ac1d4efaefa362a5df44a81fc5f19ea54542f35 (diff)
(customize-apropos, customize-apropos-options)
(customize-apropos-faces, customize-apropos-groups): Doc fixes.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r--lisp/cus-edit.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index f5d3224731c..fe2780b0274 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1252,7 +1252,7 @@ suggest to customize that face, if it's customizable."
;;;###autoload
(defun customize-apropos (regexp &optional all)
- "Customize all options, faces and groups matching REGEXP.
+ "Customize all loaded options, faces and groups matching REGEXP.
If ALL is `options', include only options.
If ALL is `faces', include only faces.
If ALL is `groups', include only groups.
@@ -1284,20 +1284,20 @@ that are not customizable options, as well as faces and groups."
;;;###autoload
(defun customize-apropos-options (regexp &optional arg)
- "Customize all customizable options matching REGEXP.
+ "Customize all loaded customizable options matching REGEXP.
With prefix arg, include variables that are not customizable options."
(interactive "sCustomize regexp: \nP")
(customize-apropos regexp (or arg 'options)))
;;;###autoload
(defun customize-apropos-faces (regexp)
- "Customize all user faces matching REGEXP."
+ "Customize all loaded faces matching REGEXP."
(interactive "sCustomize regexp: \n")
(customize-apropos regexp 'faces))
;;;###autoload
(defun customize-apropos-groups (regexp)
- "Customize all user groups matching REGEXP."
+ "Customize all loaded groups matching REGEXP."
(interactive "sCustomize regexp: \n")
(customize-apropos regexp 'groups))