# HG changeset patch # User Andreas Schwab # Date 906110092 0 # Node ID 7f15741f18995f35bb045a72c2da12446b19b587 # Parent a804a047b23dd1837fcb32f0fa68ca931d875c2c (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. diff -r a804a047b23d -r 7f15741f1899 lisp/midnight.el --- a/lisp/midnight.el Fri Sep 18 09:13:46 1998 +0000 +++ b/lisp/midnight.el Fri Sep 18 09:14:52 1998 +0000 @@ -109,7 +109,7 @@ 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 @@ 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 @@ 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 @@ 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)