diff options
author | Miles Bader <miles@gnu.org> | 2007-08-03 05:58:06 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 2007-08-03 05:58:06 +0000 |
commit | 2ca773ca40d2c1896757e6382aefff6d9de1c5cc (patch) | |
tree | 846419ece5e5d8bc8f11e9786598678af9c78f00 /lisp/cus-edit.el | |
parent | 49b23c2a404cf31fb1aeecc7932a7304aaf16a67 (diff) | |
parent | 0896d93184a719bc994a3e699de27190aac0acb1 (diff) | |
download | emacs-2ca773ca40d2c1896757e6382aefff6d9de1c5cc.tar.gz |
Merge from emacs--devo--0
Patches applied:
* emacs--devo--0 (patch 843-845)
- Update from CVS
- Merge from emacs--rel--22
* emacs--rel--22 (patch 84-87)
- Update from CVS
- Change capitalization of VC backend names for new backends
Revision: emacs@sv.gnu.org/emacs--multi-tty--0--patch-30
Diffstat (limited to 'lisp/cus-edit.el')
-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 2cfd247a645..869533b3c3e 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -1357,7 +1357,7 @@ 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 \(but we recommend using `apropos-variable' instead)." - (interactive "sCustomize regexp: \nP") + (interactive "sCustomize (regexp): \nP") (let ((found nil)) (mapatoms (lambda (symbol) (when (string-match regexp (symbol-name symbol)) @@ -1393,19 +1393,19 @@ that are not customizable options, as well as faces and groups "Customize all loaded customizable options matching REGEXP. With prefix arg, include variables that are not customizable options \(but we recommend using `apropos-variable' instead)." - (interactive "sCustomize regexp: \nP") + (interactive "sCustomize options (regexp): \nP") (customize-apropos regexp (or arg 'options))) ;;;###autoload (defun customize-apropos-faces (regexp) "Customize all loaded faces matching REGEXP." - (interactive "sCustomize regexp: \n") + (interactive "sCustomize faces (regexp): \n") (customize-apropos regexp 'faces)) ;;;###autoload (defun customize-apropos-groups (regexp) "Customize all loaded groups matching REGEXP." - (interactive "sCustomize regexp: \n") + (interactive "sCustomize groups (regexp): \n") (customize-apropos regexp 'groups)) ;;; Buffer. |