diff options
author | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:14:52 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 1998-09-18 09:14:52 +0000 |
commit | 58ed689c210cf8849dc237871f9aa7d25442171a (patch) | |
tree | 009e45acbf628b128e50b131153ec2781e4f6bb3 /lisp/midnight.el | |
parent | 1ac26bf578de6439797d13b82d10658da5d4f3f9 (diff) | |
download | emacs-58ed689c210cf8849dc237871f9aa7d25442171a.tar.gz |
(clean-buffer-list-kill-regexps,
clean-buffer-list-kill-buffer-names,
clean-buffer-list-kill-never-buffer-names,
clean-buffer-list-kill-never-regexps): Fix customize type.
Diffstat (limited to 'lisp/midnight.el')
-rw-r--r-- | lisp/midnight.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el index 531a401f564..8747aeadd36 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 'list + :type '(repeat regexp) :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 'list + :type '(repeat string) :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 'list + :type '(repeat string) :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 'list + :type '(repeat regexp) :group 'midnight) (defun midnight-find (el ls test &optional key) |