aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuc Teirlinck2005-12-19 23:17:19 +0000
committerLuc Teirlinck2005-12-19 23:17:19 +0000
commit06cdb5dbbed723c4196d5576fa22b3f7a5137c47 (patch)
treea88c557a6aea8e085f4ac8476846503a70946b45
parent108262a0facf02caba51dd23271131eb1ca7d6a5 (diff)
downloademacs-06cdb5dbbed723c4196d5576fa22b3f7a5137c47.tar.gz
emacs-06cdb5dbbed723c4196d5576fa22b3f7a5137c47.zip
(customize-apropos, customize-apropos-options): Docstring changes.
-rw-r--r--lisp/cus-edit.el6
1 files changed, 4 insertions, 2 deletions
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.
1265If ALL is `faces', include only faces. 1265If ALL is `faces', include only faces.
1266If ALL is `groups', include only groups. 1266If ALL is `groups', include only groups.
1267If ALL is t (interactively, with prefix arg), include variables 1267If ALL is t (interactively, with prefix arg), include variables
1268that are not customizable options, as well as faces and groups." 1268that are not customizable options, as well as faces and groups
1269\(but we recommend using `apropos-variable' instead)."
1269 (interactive "sCustomize regexp: \nP") 1270 (interactive "sCustomize regexp: \nP")
1270 (let ((found nil)) 1271 (let ((found nil))
1271 (mapatoms (lambda (symbol) 1272 (mapatoms (lambda (symbol)
@@ -1293,7 +1294,8 @@ that are not customizable options, as well as faces and groups."
1293;;;###autoload 1294;;;###autoload
1294(defun customize-apropos-options (regexp &optional arg) 1295(defun customize-apropos-options (regexp &optional arg)
1295 "Customize all loaded customizable options matching REGEXP. 1296 "Customize all loaded customizable options matching REGEXP.
1296With prefix arg, include variables that are not customizable options." 1297With prefix arg, include variables that are not customizable options
1298\(but we recommend using `apropos-variable' instead)."
1297 (interactive "sCustomize regexp: \nP") 1299 (interactive "sCustomize regexp: \nP")
1298 (customize-apropos regexp (or arg 'options))) 1300 (customize-apropos regexp (or arg 'options)))
1299 1301