diff options
| -rw-r--r-- | lisp/midnight.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/midnight.el b/lisp/midnight.el index 8225c045d13..0613af908a7 100644 --- a/lisp/midnight.el +++ b/lisp/midnight.el | |||
| @@ -173,8 +173,8 @@ The relevant variables are `clean-buffer-list-delay-general', | |||
| 173 | `clean-buffer-list-kill-never-regexps'. | 173 | `clean-buffer-list-kill-never-regexps'. |
| 174 | While processing buffers, this procedure displays messages containing | 174 | While processing buffers, this procedure displays messages containing |
| 175 | the current date/time, buffer name, how many seconds ago it was | 175 | the current date/time, buffer name, how many seconds ago it was |
| 176 | displayed (can be NIL if the buffer was never displayed) and its | 176 | displayed (can be nil if the buffer was never displayed) and its |
| 177 | lifetime, i.e., its `age' when it will be purged." | 177 | lifetime, i.e., its \"age\" when it will be purged." |
| 178 | (interactive) | 178 | (interactive) |
| 179 | (let ((tm (midnight-float-time)) bts (ts (format-time-string "%Y-%m-%d %T")) bn | 179 | (let ((tm (midnight-float-time)) bts (ts (format-time-string "%Y-%m-%d %T")) bn |
| 180 | (bufs (buffer-list)) buf delay cbld) | 180 | (bufs (buffer-list)) buf delay cbld) |
| @@ -196,7 +196,7 @@ lifetime, i.e., its `age' when it will be purged." | |||
| 196 | (defvar midnight-period (* 24 60 60) | 196 | (defvar midnight-period (* 24 60 60) |
| 197 | "The number of seconds in a day--the delta for `midnight-timer'.") | 197 | "The number of seconds in a day--the delta for `midnight-timer'.") |
| 198 | 198 | ||
| 199 | (defcustom midnight-hook 'clean-buffer-list | 199 | (defcustom midnight-hook '(clean-buffer-list) |
| 200 | "The hook run `midnight-delay' seconds after midnight every day. | 200 | "The hook run `midnight-delay' seconds after midnight every day. |
| 201 | The default value is `clean-buffer-list'." | 201 | The default value is `clean-buffer-list'." |
| 202 | :type 'hook | 202 | :type 'hook |