comparison lisp/cus-edit.el @ 67549:9732906a9ef7

(customize-apropos, customize-apropos-options) (customize-apropos-faces, customize-apropos-groups): Doc fixes.
author Luc Teirlinck <teirllm@auburn.edu>
date Tue, 13 Dec 2005 03:46:02 +0000
parents 984ab2cd1b98
children d14352717f67
comparison
equal deleted inserted replaced
67548:3ce7783b56bc 67549:9732906a9ef7
1250 (custom-buffer-create (custom-sort-items found t nil) 1250 (custom-buffer-create (custom-sort-items found t nil)
1251 "*Customize Saved*")))) 1251 "*Customize Saved*"))))
1252 1252
1253 ;;;###autoload 1253 ;;;###autoload
1254 (defun customize-apropos (regexp &optional all) 1254 (defun customize-apropos (regexp &optional all)
1255 "Customize all options, faces and groups matching REGEXP. 1255 "Customize all loaded options, faces and groups matching REGEXP.
1256 If ALL is `options', include only options. 1256 If ALL is `options', include only options.
1257 If ALL is `faces', include only faces. 1257 If ALL is `faces', include only faces.
1258 If ALL is `groups', include only groups. 1258 If ALL is `groups', include only groups.
1259 If ALL is t (interactively, with prefix arg), include variables 1259 If ALL is t (interactively, with prefix arg), include variables
1260 that are not customizable options, as well as faces and groups." 1260 that are not customizable options, as well as faces and groups."
1282 custom-buffer-order-groups) 1282 custom-buffer-order-groups)
1283 "*Customize Apropos*")))) 1283 "*Customize Apropos*"))))
1284 1284
1285 ;;;###autoload 1285 ;;;###autoload
1286 (defun customize-apropos-options (regexp &optional arg) 1286 (defun customize-apropos-options (regexp &optional arg)
1287 "Customize all customizable options matching REGEXP. 1287 "Customize all loaded customizable options matching REGEXP.
1288 With prefix arg, include variables that are not customizable options." 1288 With prefix arg, include variables that are not customizable options."
1289 (interactive "sCustomize regexp: \nP") 1289 (interactive "sCustomize regexp: \nP")
1290 (customize-apropos regexp (or arg 'options))) 1290 (customize-apropos regexp (or arg 'options)))
1291 1291
1292 ;;;###autoload 1292 ;;;###autoload
1293 (defun customize-apropos-faces (regexp) 1293 (defun customize-apropos-faces (regexp)
1294 "Customize all user faces matching REGEXP." 1294 "Customize all loaded faces matching REGEXP."
1295 (interactive "sCustomize regexp: \n") 1295 (interactive "sCustomize regexp: \n")
1296 (customize-apropos regexp 'faces)) 1296 (customize-apropos regexp 'faces))
1297 1297
1298 ;;;###autoload 1298 ;;;###autoload
1299 (defun customize-apropos-groups (regexp) 1299 (defun customize-apropos-groups (regexp)
1300 "Customize all user groups matching REGEXP." 1300 "Customize all loaded groups matching REGEXP."
1301 (interactive "sCustomize regexp: \n") 1301 (interactive "sCustomize regexp: \n")
1302 (customize-apropos regexp 'groups)) 1302 (customize-apropos regexp 'groups))
1303 1303
1304 ;;; Buffer. 1304 ;;; Buffer.
1305 1305