From: Luc Teirlinck Date: Mon, 19 Dec 2005 23:17:19 +0000 (+0000) Subject: (customize-apropos, customize-apropos-options): Docstring changes. X-Git-Tag: emacs-pretest-22.0.90~5186 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=06cdb5dbbed723c4196d5576fa22b3f7a5137c47;p=emacs.git (customize-apropos, customize-apropos-options): Docstring changes. --- diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index 5feeea0a854..43c38e172b5 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1265,7 +1265,8 @@ If ALL is `options', include only options. 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 @@ that are not customizable options, as well as faces and groups." ;;;###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)))