Mercurial > emacs
annotate lisp/midnight.el @ 90025:b826d8196afd
(encoded-kbd-decode-code-list): New
function.
(encoded-kbd-self-insert-charset): Support multibyte charsets.
(encoded-kbd-setup-keymap): Likewise.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Fri, 15 Oct 2004 07:26:15 +0000 |
parents | 68c22ea6027c |
children | 4da4a09e8b1b |
rev | line source |
---|---|
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30509
diff
changeset
|
1 ;;; midnight.el --- run something every midnight, e.g., kill old buffers |
22443 | 2 |
89909 | 3 ;;; Copyright (C) 1998, 2004 Free Software Foundation, Inc. |
22443 | 4 |
38414
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30509
diff
changeset
|
5 ;; Author: Sam Steingold <sds@usa.net> |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30509
diff
changeset
|
6 ;; Maintainer: Sam Steingold <sds@usa.net> |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30509
diff
changeset
|
7 ;; Created: 1998-05-18 |
67b464da13ec
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
30509
diff
changeset
|
8 ;; Keywords: utilities |
22443 | 9 |
10 ;; This file is part of GNU Emacs. | |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; it under the terms of the GNU General Public License as published by | |
14 ;; the Free Software Foundation; either version 2, or (at your option) | |
15 ;; any later version. | |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the | |
24 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
25 ;; Boston, MA 02111-1307, USA. | |
26 | |
27 ;;; Commentary: | |
28 | |
29 ;; To use the file, put (require 'midnight) into your .emacs. Then, at | |
30 ;; midnight, Emacs will run the normal hook `midnight-hook'. You can | |
31 ;; put whatever you like there, say, `calendar'; by default there is | |
32 ;; only one function there - `clean-buffer-list'. It will kill the | |
33 ;; buffers matching `clean-buffer-list-kill-buffer-names' and | |
34 ;; `clean-buffer-list-kill-regexps' and the buffers which where last | |
35 ;; displayed more than `clean-buffer-list-delay-general' days ago, | |
36 ;; keeping `clean-buffer-list-kill-never-buffer-names' and | |
37 ;; `clean-buffer-list-kill-never-regexps'. | |
38 | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
39 ;;; Code: |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
40 |
22859 | 41 (eval-when-compile |
23104
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
42 (require 'cl)) |
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
43 |
b1ce2a4bc9b0
Require `timer' not only when compiling.
Karl Heuer <kwzh@gnu.org>
parents:
23059
diff
changeset
|
44 (require 'timer) |
22443 | 45 |
46 (defgroup midnight nil | |
47 "Run something every day at midnight." | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
48 :group 'calendar |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
49 :version "20.3") |
22443 | 50 |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
51 (defcustom midnight-mode nil |
22497
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
52 "*Non-nil means run `midnight-hook' at midnight. |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
53 Setting this variable outside customize has no effect; |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
54 call `cancel-timer' or `timer-activate' on `midnight-timer' instead." |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
55 :type 'boolean |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
56 :group 'midnight |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
57 :require 'midnight |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
58 :initialize 'custom-initialize-default |
22497
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
59 :set (lambda (symb val) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
60 (set symb val) (require 'midnight) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
61 (if val (timer-activate midnight-timer) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
62 (cancel-timer midnight-timer)))) |
5f8133b3c592
(midnight-mode): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22443
diff
changeset
|
63 |
22443 | 64 ;;; time conversion |
65 | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
66 (defun midnight-time-float (num) |
22443 | 67 "Convert the float number of seconds since epoch to the list of 3 integers." |
68 (let* ((div (ash 1 16)) (1st (floor num div))) | |
69 (list 1st (floor (- num (* (float div) 1st))) | |
70 (round (* 10000000 (mod num 1)))))) | |
71 | |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
72 (defun midnight-buffer-display-time (&optional buf) |
22443 | 73 "Return the time-stamp of the given buffer, or current buffer, as float." |
30458
241c83e5f559
midnight-buffer-display-time: use with-current-buffer
Sam Steingold <sds@gnu.org>
parents:
24387
diff
changeset
|
74 (with-current-buffer (or buf (current-buffer)) |
30481 | 75 (when buffer-display-time (float-time buffer-display-time)))) |
22443 | 76 |
77 ;;; clean-buffer-list stuff | |
78 | |
79 (defcustom clean-buffer-list-delay-general 3 | |
80 "*The number of days before any buffer becomes eligible for autokilling. | |
81 The autokilling is done by `clean-buffer-list' when is it in `midnight-hook'. | |
82 Currently displayed and/or modified (unsaved) buffers, as well as buffers | |
83 matching `clean-buffer-list-kill-never-buffer-names' and | |
84 `clean-buffer-list-kill-never-regexps' are excluded." | |
85 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
86 :group 'midnight) |
22443 | 87 |
88 (defcustom clean-buffer-list-delay-special 3600 | |
89 "*The number of seconds before some buffers become eligible for autokilling. | |
90 Buffers matched by `clean-buffer-list-kill-regexps' and | |
91 `clean-buffer-list-kill-buffer-names' are killed if they were last | |
92 displayed more than this many seconds ago." | |
93 :type 'integer | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
94 :group 'midnight) |
22443 | 95 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
96 (defcustom clean-buffer-list-kill-regexps nil |
22443 | 97 "*List of regexps saying which buffers will be killed at midnight. |
98 If buffer name matches a regexp in the list and the buffer was not displayed | |
99 in the last `clean-buffer-list-delay-special' seconds, it is killed by | |
100 `clean-buffer-list' when is it in `midnight-hook'. | |
24387
32fd8c1e4e51
(clean-buffer-list-kill-regexps): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24149
diff
changeset
|
101 If a member of the list is a cons, its `car' is the regexp and its `cdr' is |
22443 | 102 the number of seconds to use instead of `clean-buffer-list-delay-special'. |
103 See also `clean-buffer-list-kill-buffer-names', | |
104 `clean-buffer-list-kill-never-regexps' and | |
105 `clean-buffer-list-kill-never-buffer-names'." | |
23345
b61fd1c104f9
(clean-buffer-list-kill-regexps): Improve custom type.
Richard M. Stallman <rms@gnu.org>
parents:
23268
diff
changeset
|
106 :type '(repeat (regexp :tag "Regexp matching Buffer Name")) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
107 :group 'midnight) |
22443 | 108 |
109 (defcustom clean-buffer-list-kill-buffer-names | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
110 '("*Help*" "*Apropos*" "*Man " "*Buffer List*" "*Compile-Log*" "*info*" |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
111 "*vc*" "*vc-diff*" "*diff*") |
22443 | 112 "*List of strings saying which buffers will be killed at midnight. |
113 Buffers with names in this list, which were not displayed in the last | |
114 `clean-buffer-list-delay-special' seconds, are killed by `clean-buffer-list' | |
115 when is it in `midnight-hook'. | |
24387
32fd8c1e4e51
(clean-buffer-list-kill-regexps): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
24149
diff
changeset
|
116 If a member of the list is a cons, its `car' is the name and its `cdr' is |
22443 | 117 the number of seconds to use instead of `clean-buffer-list-delay-special'. |
118 See also `clean-buffer-list-kill-regexps', | |
119 `clean-buffer-list-kill-never-regexps' and | |
120 `clean-buffer-list-kill-never-buffer-names'." | |
23345
b61fd1c104f9
(clean-buffer-list-kill-regexps): Improve custom type.
Richard M. Stallman <rms@gnu.org>
parents:
23268
diff
changeset
|
121 :type '(repeat (string :tag "Buffer Name")) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
122 :group 'midnight) |
22443 | 123 |
124 (defcustom clean-buffer-list-kill-never-buffer-names | |
125 '("*scratch*" "*Messages*") | |
126 "*List of buffer names which will never be killed by `clean-buffer-list'. | |
127 See also `clean-buffer-list-kill-never-regexps'. | |
128 Note that this does override `clean-buffer-list-kill-regexps' and | |
129 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
130 two lists will NOT be killed if it is also present in this list." | |
23345
b61fd1c104f9
(clean-buffer-list-kill-regexps): Improve custom type.
Richard M. Stallman <rms@gnu.org>
parents:
23268
diff
changeset
|
131 :type '(repeat (string :tag "Buffer Name")) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
132 :group 'midnight) |
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
133 |
22443 | 134 |
30509
423583fa92f3
(clean-buffer-list-kill-never-regexps): Correctly
Gerd Moellmann <gerd@gnu.org>
parents:
30481
diff
changeset
|
135 (defcustom clean-buffer-list-kill-never-regexps '("^ \\*Minibuf-.*\\*$") |
22443 | 136 "*List of regexp saying which buffers will never be killed at midnight. |
137 See also `clean-buffer-list-kill-never-buffer-names'. | |
138 Killing is done by `clean-buffer-list'. | |
139 Note that this does override `clean-buffer-list-kill-regexps' and | |
140 `clean-buffer-list-kill-buffer-names' so a buffer matching any of these | |
141 two lists will NOT be killed if it also matches anything in this list." | |
23345
b61fd1c104f9
(clean-buffer-list-kill-regexps): Improve custom type.
Richard M. Stallman <rms@gnu.org>
parents:
23268
diff
changeset
|
142 :type '(repeat (regexp :tag "Regexp matching Buffer Name")) |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
143 :group 'midnight) |
22443 | 144 |
145 (defun midnight-find (el ls test &optional key) | |
146 "A stopgap solution to the absence of `find' in ELisp." | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
147 (dolist (rr ls) |
30509
423583fa92f3
(clean-buffer-list-kill-never-regexps): Correctly
Gerd Moellmann <gerd@gnu.org>
parents:
30481
diff
changeset
|
148 (when (funcall test (if key (funcall key rr) rr) el) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
149 (return rr)))) |
22859 | 150 |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
151 (defun clean-buffer-list-delay (name) |
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
152 "Return the delay, in seconds, before killing a buffer named NAME. |
22443 | 153 Uses `clean-buffer-list-kill-buffer-names', `clean-buffer-list-kill-regexps' |
154 `clean-buffer-list-delay-general' and `clean-buffer-list-delay-special'. | |
155 Autokilling is done by `clean-buffer-list'." | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
156 (or (assoc-default name clean-buffer-list-kill-buffer-names 'string= |
22859 | 157 clean-buffer-list-delay-special) |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
158 (assoc-default name clean-buffer-list-kill-regexps 'string-match |
22859 | 159 clean-buffer-list-delay-special) |
160 (* clean-buffer-list-delay-general 24 60 60))) | |
22443 | 161 |
23389
f6d920229f4c
(clean-buffer-list): Add autoload cookie.
Karl Heuer <kwzh@gnu.org>
parents:
23345
diff
changeset
|
162 ;;;###autoload |
22443 | 163 (defun clean-buffer-list () |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
164 "Kill old buffers that have not been displayed recently. |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
165 The relevant variables are `clean-buffer-list-delay-general', |
22443 | 166 `clean-buffer-list-delay-special', `clean-buffer-list-kill-buffer-names', |
167 `clean-buffer-list-kill-never-buffer-names', | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
168 `clean-buffer-list-kill-regexps' and |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
169 `clean-buffer-list-kill-never-regexps'. |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
170 While processing buffers, this procedure displays messages containing |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
171 the current date/time, buffer name, how many seconds ago it was |
23059
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
172 displayed (can be nil if the buffer was never displayed) and its |
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
173 lifetime, i.e., its \"age\" when it will be purged." |
22443 | 174 (interactive) |
30481 | 175 (let ((tm (float-time)) bts (ts (format-time-string "%Y-%m-%d %T")) |
24149
123fd862314c
(clean-buffer-list): do not kill a buffer if it has
Karl Heuer <kwzh@gnu.org>
parents:
23389
diff
changeset
|
176 (bufs (buffer-list)) buf delay cbld bn) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
177 (while (setq buf (pop bufs)) |
23040
5615932155fe
(midnight-float-time): Renamed from float-time.
Richard M. Stallman <rms@gnu.org>
parents:
22971
diff
changeset
|
178 (setq bts (midnight-buffer-display-time buf) bn (buffer-name buf) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
179 delay (if bts (- tm bts) 0) cbld (clean-buffer-list-delay bn)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
180 (message "[%s] `%s' [%s %d]" ts bn (if bts (round delay)) cbld) |
22859 | 181 (unless (or (midnight-find bn clean-buffer-list-kill-never-regexps |
22443 | 182 'string-match) |
183 (midnight-find bn clean-buffer-list-kill-never-buffer-names | |
184 'string-equal) | |
24149
123fd862314c
(clean-buffer-list): do not kill a buffer if it has
Karl Heuer <kwzh@gnu.org>
parents:
23389
diff
changeset
|
185 (get-buffer-process buf) |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
186 (and (buffer-file-name buf) (buffer-modified-p buf)) |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
187 (get-buffer-window buf 'visible) (< delay cbld)) |
22443 | 188 (message "[%s] killing `%s'" ts bn) |
189 (kill-buffer buf))))) | |
190 | |
191 ;;; midnight hook | |
192 | |
193 (defvar midnight-period (* 24 60 60) | |
22898
138b588a013c
(clean-buffer-list-kill-regexps): Init to nil, as before.
Richard M. Stallman <rms@gnu.org>
parents:
22859
diff
changeset
|
194 "The number of seconds in a day--the delta for `midnight-timer'.") |
22443 | 195 |
23059
41745889db17
(midnight-hook): initialize to a list.
Richard M. Stallman <rms@gnu.org>
parents:
23040
diff
changeset
|
196 (defcustom midnight-hook '(clean-buffer-list) |
22443 | 197 "The hook run `midnight-delay' seconds after midnight every day. |
198 The default value is `clean-buffer-list'." | |
199 :type 'hook | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
200 :group 'midnight) |
22443 | 201 |
202 (defun midnight-next () | |
203 "Return the number of seconds till the next midnight." | |
204 (multiple-value-bind (sec min hrs) (decode-time) | |
205 (- (* 24 60 60) (* 60 60 hrs) (* 60 min) sec))) | |
206 | |
207 (defvar midnight-timer nil | |
208 "Timer running the `midnight-hook' `midnight-delay' seconds after midnight. | |
209 Use `cancel-timer' to stop it and `midnight-delay-set' to change | |
210 the time when it is run.") | |
211 | |
212 ;;;###autoload | |
213 (defun midnight-delay-set (symb tm) | |
214 "Modify `midnight-timer' according to `midnight-delay'. | |
22971
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
215 Sets the first argument SYMB (which must be symbol `midnight-delay') |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
216 to its second argument TM." |
ff793b9329c9
(clean-buffer-list-kill-buffer-names): Add `*diff*'.
Richard M. Stallman <rms@gnu.org>
parents:
22938
diff
changeset
|
217 (assert (eq symb 'midnight-delay) t |
89909 | 218 "Illegal argument to `midnight-delay-set': `%s'") |
22443 | 219 (set symb tm) |
220 (when (timerp midnight-timer) (cancel-timer midnight-timer)) | |
221 (setq midnight-timer | |
222 (run-at-time (if (numberp tm) (+ (midnight-next) tm) tm) | |
22938
a45f2afb8ed9
(midnight-delay-set): Use run-hooks directly.
Richard M. Stallman <rms@gnu.org>
parents:
22936
diff
changeset
|
223 midnight-period 'run-hooks 'midnight-hook))) |
22443 | 224 |
225 (defcustom midnight-delay 3600 | |
226 "*The number of seconds after the midnight when the `midnight-timer' is run. | |
227 You should set this variable before loading midnight.el, or | |
228 set it by calling `midnight-delay-set', or use `custom'. | |
229 If you wish, you can use a string instead, it will be passed as the | |
230 first argument to `run-at-time'." | |
231 :type 'sexp | |
232 :set 'midnight-delay-set | |
22538
2649d061d370
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
22497
diff
changeset
|
233 :group 'midnight) |
22443 | 234 |
235 (provide 'midnight) | |
236 | |
89909 | 237 ;;; arch-tag: a5979be9-2890-46a3-ba84-791f0a4a6e80 |
22443 | 238 ;;; midnight.el ends here |