aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Schwab1998-09-18 09:14:52 +0000
committerAndreas Schwab1998-09-18 09:14:52 +0000
commit58ed689c210cf8849dc237871f9aa7d25442171a (patch)
tree009e45acbf628b128e50b131153ec2781e4f6bb3
parent1ac26bf578de6439797d13b82d10658da5d4f3f9 (diff)
downloademacs-58ed689c210cf8849dc237871f9aa7d25442171a.tar.gz
emacs-58ed689c210cf8849dc237871f9aa7d25442171a.zip
(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.
-rw-r--r--lisp/midnight.el8
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'.
109See also `clean-buffer-list-kill-buffer-names', 109See also `clean-buffer-list-kill-buffer-names',
110`clean-buffer-list-kill-never-regexps' and 110`clean-buffer-list-kill-never-regexps' and
111`clean-buffer-list-kill-never-buffer-names'." 111`clean-buffer-list-kill-never-buffer-names'."
112 :type 'list 112 :type '(repeat regexp)
113 :group 'midnight) 113 :group 'midnight)
114 114
115(defcustom clean-buffer-list-kill-buffer-names 115(defcustom clean-buffer-list-kill-buffer-names
@@ -124,7 +124,7 @@ the number of seconds to use instead of `clean-buffer-list-delay-special'.
124See also `clean-buffer-list-kill-regexps', 124See also `clean-buffer-list-kill-regexps',
125`clean-buffer-list-kill-never-regexps' and 125`clean-buffer-list-kill-never-regexps' and
126`clean-buffer-list-kill-never-buffer-names'." 126`clean-buffer-list-kill-never-buffer-names'."
127 :type 'list 127 :type '(repeat string)
128 :group 'midnight) 128 :group 'midnight)
129 129
130(defcustom clean-buffer-list-kill-never-buffer-names 130(defcustom clean-buffer-list-kill-never-buffer-names
@@ -134,7 +134,7 @@ See also `clean-buffer-list-kill-never-regexps'.
134Note that this does override `clean-buffer-list-kill-regexps' and 134Note that this does override `clean-buffer-list-kill-regexps' and
135`clean-buffer-list-kill-buffer-names' so a buffer matching any of these 135`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
136two lists will NOT be killed if it is also present in this list." 136two lists will NOT be killed if it is also present in this list."
137 :type 'list 137 :type '(repeat string)
138 :group 'midnight) 138 :group 'midnight)
139 139
140 140
@@ -145,7 +145,7 @@ Killing is done by `clean-buffer-list'.
145Note that this does override `clean-buffer-list-kill-regexps' and 145Note that this does override `clean-buffer-list-kill-regexps' and
146`clean-buffer-list-kill-buffer-names' so a buffer matching any of these 146`clean-buffer-list-kill-buffer-names' so a buffer matching any of these
147two lists will NOT be killed if it also matches anything in this list." 147two lists will NOT be killed if it also matches anything in this list."
148 :type 'list 148 :type '(repeat regexp)
149 :group 'midnight) 149 :group 'midnight)
150 150
151(defun midnight-find (el ls test &optional key) 151(defun midnight-find (el ls test &optional key)