changeset 23345:b61fd1c104f9

(clean-buffer-list-kill-regexps): Improve custom type. (clean-buffer-list-kill-buffer-names): Likewise. (clean-buffer-list-kill-never-buffer-names): Likewise. (clean-buffer-list-kill-never-regexps): Likewise.
author Richard M. Stallman <rms@gnu.org>
date Mon, 28 Sep 1998 16:08:58 +0000
parents 608bc56ca20e
children 4db659df7407
files lisp/midnight.el
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/midnight.el	Mon Sep 28 14:29:49 1998 +0000
+++ b/lisp/midnight.el	Mon Sep 28 16:08:58 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 '(repeat regexp)
+  :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
   :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 '(repeat string)
+  :type '(repeat (string :tag "Buffer Name"))
   :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 '(repeat string)
+  :type '(repeat (string :tag "Buffer Name"))
   :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 '(repeat regexp)
+  :type '(repeat (regexp :tag "Regexp matching Buffer Name"))
   :group 'midnight)
 
 (defun midnight-find (el ls test &optional key)