summaryrefslogtreecommitdiff
path: root/lisp/midnight.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1998-09-28 16:08:58 +0000
committerRichard M. Stallman <rms@gnu.org>1998-09-28 16:08:58 +0000
commit1e5a443809ef0eea5cd448a98a83932501499b02 (patch)
tree3883ddd067cf91ea90ac1ad18c30afc6dd0d1f0a /lisp/midnight.el
parent51d628c817d52ae1c71dd595bd9084fdf4c750a1 (diff)
downloademacs-1e5a443809ef0eea5cd448a98a83932501499b02.tar.gz
emacs-1e5a443809ef0eea5cd448a98a83932501499b02.tar.bz2
emacs-1e5a443809ef0eea5cd448a98a83932501499b02.zip
(clean-buffer-list-kill-regexps): Improve custom type.
(clean-buffer-list-kill-buffer-names): Likewise. (clean-buffer-list-kill-never-buffer-names): Likewise. (clean-buffer-list-kill-never-regexps): Likewise.
Diffstat (limited to 'lisp/midnight.el')
-rw-r--r--lisp/midnight.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el
index 8747aeadd36..28108eebc28 100644
--- a/lisp/midnight.el
+++ b/lisp/midnight.el
@@ -109,7 +109,7 @@ the number of seconds to use instead of `clean-buffer-list-delay-special'.
See also `clean-buffer-list-kill-buffer-names',
`clean-buffer-list-kill-never-regexps' and
`clean-buffer-list-kill-never-buffer-names'."
- :type '(repeat regexp)
+ :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
:group 'midnight)
(defcustom clean-buffer-list-kill-buffer-names
@@ -124,7 +124,7 @@ the number of seconds to use instead of `clean-buffer-list-delay-special'.
See also `clean-buffer-list-kill-regexps',
`clean-buffer-list-kill-never-regexps' and
`clean-buffer-list-kill-never-buffer-names'."
- :type '(repeat string)
+ :type '(repeat (string :tag "Buffer Name"))
:group 'midnight)
(defcustom clean-buffer-list-kill-never-buffer-names
@@ -134,7 +134,7 @@ See also `clean-buffer-list-kill-never-regexps'.
Note that this does override `clean-buffer-list-kill-regexps' and
`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
two lists will NOT be killed if it is also present in this list."
- :type '(repeat string)
+ :type '(repeat (string :tag "Buffer Name"))
:group 'midnight)
@@ -145,7 +145,7 @@ Killing is done by `clean-buffer-list'.
Note that this does override `clean-buffer-list-kill-regexps' and
`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
two lists will NOT be killed if it also matches anything in this list."
- :type '(repeat regexp)
+ :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
:group 'midnight)
(defun midnight-find (el ls test &optional key)