Mercurial > emacs
changeset 23268:7f15741f1899
(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.
author | Andreas Schwab <schwab@suse.de> |
---|---|
date | Fri, 18 Sep 1998 09:14:52 +0000 |
parents | a804a047b23d |
children | 16780f249ece |
files | lisp/midnight.el |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- 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)