# HG changeset patch # User Luc Teirlinck # Date 1135034239 0 # Node ID acbc5122c634beb306d1e078c94f48a125f69169 # Parent 76931aba1936f92391e94e97a4087a0dc53d4a62 (customize-apropos, customize-apropos-options): Docstring changes. diff -r 76931aba1936 -r acbc5122c634 lisp/cus-edit.el --- a/lisp/cus-edit.el Mon Dec 19 22:21:41 2005 +0000 +++ b/lisp/cus-edit.el Mon Dec 19 23:17:19 2005 +0000 @@ -1265,7 +1265,8 @@ If ALL is `faces', include only faces. If ALL is `groups', include only groups. If ALL is t (interactively, with prefix arg), include variables -that are not customizable options, as well as faces and groups." +that are not customizable options, as well as faces and groups +\(but we recommend using `apropos-variable' instead)." (interactive "sCustomize regexp: \nP") (let ((found nil)) (mapatoms (lambda (symbol) @@ -1293,7 +1294,8 @@ ;;;###autoload (defun customize-apropos-options (regexp &optional arg) "Customize all loaded customizable options matching REGEXP. -With prefix arg, include variables that are not customizable options." +With prefix arg, include variables that are not customizable options +\(but we recommend using `apropos-variable' instead)." (interactive "sCustomize regexp: \nP") (customize-apropos regexp (or arg 'options)))