Variable: clean-buffer-list-kill-buffer-names
clean-buffer-list-kill-buffer-names is a customizable variable defined
in midnight.el.gz.
Value
("*Help*" "*Apropos*" "*Buffer List*" "*Compile-Log*" "*info*" "*vc*"
"*vc-diff*" "*diff*")
Documentation
List of strings saying which buffers will be killed at midnight.
Buffers with names in this list, which were not displayed in the last
clean-buffer-list-delay-special seconds, are killed by clean-buffer-list
when it is in midnight-hook.
If a member of the list is a cons, its car is the name and its cdr is
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.
Source Code
;; Defined in /usr/src/emacs/lisp/midnight.el.gz
(defcustom clean-buffer-list-kill-buffer-names
'("*Help*" "*Apropos*" "*Buffer List*" "*Compile-Log*" "*info*"
"*vc*" "*vc-diff*" "*diff*")
"List of strings saying which buffers will be killed at midnight.
Buffers with names in this list, which were not displayed in the last
`clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list'
when it is in `midnight-hook'.
If a member of the list is a cons, its `car' is the name and its `cdr' is
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 '(repeat (string :tag "Buffer Name")))