diff options
| author | Richard M. Stallman | 2007-08-02 17:53:19 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2007-08-02 17:53:19 +0000 |
| commit | bd18cd1928fc6405408ef9b5ab714b1a7583abb1 (patch) | |
| tree | 87b946417a1bd199327f418469a61ed08c5c5610 | |
| parent | 69a7537f47c12c41ab01ee4cf6cbd505593a22a8 (diff) | |
| download | emacs-bd18cd1928fc6405408ef9b5ab714b1a7583abb1.tar.gz emacs-bd18cd1928fc6405408ef9b5ab714b1a7583abb1.zip | |
(customize-apropos, customize-apropos-options)
(customize-apropos-faces, customize-apropos-groups): Improve prompt.
| -rw-r--r-- | lisp/cus-edit.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index ed9db15a7cf..29840b8fb5c 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el | |||
| @@ -1384,7 +1384,7 @@ If ALL is `groups', include only groups. | |||
| 1384 | If ALL is t (interactively, with prefix arg), include variables | 1384 | If ALL is t (interactively, with prefix arg), include variables |
| 1385 | that are not customizable options, as well as faces and groups | 1385 | that are not customizable options, as well as faces and groups |
| 1386 | \(but we recommend using `apropos-variable' instead)." | 1386 | \(but we recommend using `apropos-variable' instead)." |
| 1387 | (interactive "sCustomize regexp: \nP") | 1387 | (interactive "sCustomize (regexp): \nP") |
| 1388 | (let ((found nil)) | 1388 | (let ((found nil)) |
| 1389 | (mapatoms (lambda (symbol) | 1389 | (mapatoms (lambda (symbol) |
| 1390 | (when (string-match regexp (symbol-name symbol)) | 1390 | (when (string-match regexp (symbol-name symbol)) |
| @@ -1413,19 +1413,19 @@ that are not customizable options, as well as faces and groups | |||
| 1413 | "Customize all loaded customizable options matching REGEXP. | 1413 | "Customize all loaded customizable options matching REGEXP. |
| 1414 | With prefix arg, include variables that are not customizable options | 1414 | With prefix arg, include variables that are not customizable options |
| 1415 | \(but we recommend using `apropos-variable' instead)." | 1415 | \(but we recommend using `apropos-variable' instead)." |
| 1416 | (interactive "sCustomize regexp: \nP") | 1416 | (interactive "sCustomize options (regexp): \nP") |
| 1417 | (customize-apropos regexp (or arg 'options))) | 1417 | (customize-apropos regexp (or arg 'options))) |
| 1418 | 1418 | ||
| 1419 | ;;;###autoload | 1419 | ;;;###autoload |
| 1420 | (defun customize-apropos-faces (regexp) | 1420 | (defun customize-apropos-faces (regexp) |
| 1421 | "Customize all loaded faces matching REGEXP." | 1421 | "Customize all loaded faces matching REGEXP." |
| 1422 | (interactive "sCustomize regexp: \n") | 1422 | (interactive "sCustomize faces (regexp): \n") |
| 1423 | (customize-apropos regexp 'faces)) | 1423 | (customize-apropos regexp 'faces)) |
| 1424 | 1424 | ||
| 1425 | ;;;###autoload | 1425 | ;;;###autoload |
| 1426 | (defun customize-apropos-groups (regexp) | 1426 | (defun customize-apropos-groups (regexp) |
| 1427 | "Customize all loaded groups matching REGEXP." | 1427 | "Customize all loaded groups matching REGEXP." |
| 1428 | (interactive "sCustomize regexp: \n") | 1428 | (interactive "sCustomize groups (regexp): \n") |
| 1429 | (customize-apropos regexp 'groups)) | 1429 | (customize-apropos regexp 'groups)) |
| 1430 | 1430 | ||
| 1431 | ;;; Buffer. | 1431 | ;;; Buffer. |