(list 1st (floor (- num (* (float div) 1st)))
(round (* 10000000 (mod num 1))))))
-(defun midnight-buffer-display-time (&optional buf)
- "Return the time-stamp of the given buffer, or current buffer, as float."
- (with-current-buffer (or buf (current-buffer))
+(defun midnight-buffer-display-time (&optional buffer)
+ "Return the time-stamp of BUFFER, or current buffer, as float."
+ (with-current-buffer (or buffer (current-buffer))
(when buffer-display-time (float-time buffer-display-time))))
;;; clean-buffer-list stuff
:group 'midnight)
(defcustom clean-buffer-list-kill-never-buffer-names
- '("*scratch*" "*Messages*")
+ '("*scratch*" "*Messages*" "*server*")
"*List of buffer names which will never be killed by `clean-buffer-list'.
See also `clean-buffer-list-kill-never-regexps'.
Note that this does override `clean-buffer-list-kill-regexps' and
:type '(repeat (string :tag "Buffer Name"))
:group 'midnight)
-
(defcustom clean-buffer-list-kill-never-regexps '("^ \\*Minibuf-.*\\*$")
"*List of regexp saying which buffers will never be killed at midnight.
See also `clean-buffer-list-kill-never-buffer-names'.