]> code.delx.au - gnu-emacs/commitdiff
(clean-buffer-list-kill-regexps,
authorAndreas Schwab <schwab@suse.de>
Fri, 18 Sep 1998 09:14:52 +0000 (09:14 +0000)
committerAndreas Schwab <schwab@suse.de>
Fri, 18 Sep 1998 09:14:52 +0000 (09:14 +0000)
clean-buffer-list-kill-buffer-names,
clean-buffer-list-kill-never-buffer-names,
clean-buffer-list-kill-never-regexps): Fix customize type.

lisp/midnight.el

index 531a401f564cf420562a4af037a5cd656500e4cf..8747aeadd36c241d37abbf9e70c3487914c8a037 100644 (file)
@@ -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)