# HG changeset patch # User Luc Teirlinck # Date 1134445562 0 # Node ID 9732906a9ef7750e284811d4f031ce77d224d72d # Parent 3ce7783b56bc31324083b25b2e6813f01415f48b (customize-apropos, customize-apropos-options) (customize-apropos-faces, customize-apropos-groups): Doc fixes. diff -r 3ce7783b56bc -r 9732906a9ef7 lisp/cus-edit.el --- a/lisp/cus-edit.el Tue Dec 13 03:44:39 2005 +0000 +++ b/lisp/cus-edit.el Tue Dec 13 03:46:02 2005 +0000 @@ -1252,7 +1252,7 @@ ;;;###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 @@ ;;;###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))