0
|
1 ;;; time.el --- display time and load in mode line of Emacs.
|
|
2
|
2
|
3 ;; Copyright (C) 1985, 86, 87, 93, 94, 1996 Free Software Foundation, Inc.
|
0
|
4
|
108
|
5 ;; Maintainer: FSF, XEmacs add-ons (C) by Jens T. Lautenbacher
|
|
6 ;; mail <jens@lemming0.lem.uni-karlsruhe.de>
|
|
7 ;; for comments/fixes about the enhancements.
|
0
|
8
|
|
9 ;; This file is part of XEmacs.
|
|
10
|
|
11 ;; XEmacs is free software; you can redistribute it and/or modify it
|
|
12 ;; under the terms of the GNU General Public License as published by
|
|
13 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
14 ;; any later version.
|
|
15
|
|
16 ;; XEmacs is distributed in the hope that it will be useful, but
|
|
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
19 ;; General Public License for more details.
|
|
20
|
|
21 ;; You should have received a copy of the GNU General Public License
|
|
22 ;; along with XEmacs; see the file COPYING. If not, write to the Free
|
2
|
23 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
|
24 ;; 02111-1307, USA.
|
0
|
25
|
2
|
26 ;;; Synched up with: Not synched with FSF.
|
0
|
27
|
|
28 ;;; Commentary:
|
|
29
|
2
|
30 ;; Facilities to display current time/date and a new-mail indicator
|
|
31 ;; in the Emacs mode line. The single entry point is `display-time'.
|
0
|
32
|
2
|
33 ;; See also reportmail.el.
|
|
34 ;; This uses the XEmacs timeout-event mechanism, via a version
|
|
35 ;; of Kyle Jones' itimer package.
|
0
|
36
|
108
|
37 ;;; JTL: This is in a wide part reworked for XEmacs so it won't use
|
|
38 ;;; the old mechanism for specifying what is to be displayed.
|
|
39 ;;; The starting variable to look at is `display-time-form-list'
|
|
40
|
0
|
41 ;;; Code:
|
|
42
|
|
43 (require 'itimer)
|
|
44
|
108
|
45 (defvar display-time-compatible nil
|
|
46 "*This variable may be set to nil to get the old behaviour of display-time.
|
|
47 This means no display of a spiffy mail icon or use of the display-time-form-list
|
|
48 instead of the old display-time-string-form.")
|
|
49
|
70
|
50 (defvar display-time-mail-file nil
|
0
|
51 "*File name of mail inbox file, for indicating existence of new mail.
|
|
52 Non-nil and not a string means don't check for mail. nil means use
|
70
|
53 default, which is system-dependent, and is the same as used by Rmail.")
|
0
|
54
|
|
55 ;;;###autoload
|
70
|
56 (defvar display-time-day-and-date nil "\
|
|
57 *Non-nil means \\[display-time] should display day and date as well as time.")
|
0
|
58
|
108
|
59 (defvar display-time-interval 20
|
70
|
60 "*Seconds between updates of time in the mode line.")
|
0
|
61
|
70
|
62 (defvar display-time-24hr-format nil
|
0
|
63 "*Non-nil indicates time should be displayed as hh:mm, 0 <= hh <= 23.
|
70
|
64 Nil means 1 <= hh <= 12, and an AM/PM suffix is used.")
|
0
|
65
|
70
|
66 (defvar display-time-echo-area nil
|
|
67 "*If non-nil, display-time will use the echo area instead of the mode line.")
|
0
|
68
|
|
69 (defvar display-time-string nil)
|
|
70
|
70
|
71 (defvar display-time-hook nil
|
|
72 "*List of functions to be called when the time is updated on the mode line.")
|
0
|
73
|
|
74 (defvar display-time-server-down-time nil
|
|
75 "Time when mail file's file system was recorded to be down.
|
|
76 If that file system seems to be up, the value is nil.")
|
|
77
|
|
78 ;;;###autoload
|
|
79 (defun display-time ()
|
|
80 "Display current time, load level, and mail flag in mode line of each buffer.
|
|
81 Updates automatically every minute.
|
|
82 If `display-time-day-and-date' is non-nil, the current day and date
|
|
83 are displayed as well.
|
|
84 After each update, `display-time-hook' is run with `run-hooks'.
|
|
85 If `display-time-echo-area' is non-nil, the time is displayed in the
|
|
86 echo area instead of in the mode-line."
|
|
87 (interactive)
|
|
88 ;; if the "display-time" itimer already exists, nuke it first.
|
|
89 (let ((old (get-itimer "display-time")))
|
|
90 (if old (delete-itimer old)))
|
108
|
91
|
|
92 (if (memq 'display-time-string global-mode-string)
|
|
93 (setq global-mode-string
|
|
94 (remove 'display-time-string global-mode-string)))
|
0
|
95 ;; If we're not displaying the time in the echo area
|
|
96 ;; and the global mode string does not have a non-nil value
|
|
97 ;; then initialize the global mode string's value.
|
|
98 (or display-time-echo-area
|
|
99 global-mode-string
|
|
100 (setq global-mode-string '("")))
|
|
101 ;; If we're not displaying the time in the echo area
|
108
|
102 ;; then we add our variable to the list. This will make the time
|
0
|
103 ;; appear on the modeline.
|
|
104 (or display-time-echo-area
|
|
105 (setq global-mode-string
|
108
|
106 (append global-mode-string '(display-time-string))))
|
0
|
107 ;; Display the time initially...
|
|
108 (display-time-function)
|
|
109 ;; ... and start an itimer to do it automatically thereafter.
|
|
110 ;;
|
|
111 ;; If we wanted to be really clever about this, we could have the itimer
|
|
112 ;; not be automatically restarted, but have it re-add itself each time.
|
|
113 ;; Then we could look at (current-time) and arrange for the itimer to
|
|
114 ;; wake up exactly at the minute boundary. But that's just a little
|
|
115 ;; more work than it's worth...
|
|
116 (start-itimer "display-time" 'display-time-function
|
|
117 display-time-interval display-time-interval))
|
|
118
|
108
|
119 (defvar display-time-show-icons-maybe t
|
|
120 "Use icons to indicate the mail status if possible")
|
104
|
121
|
108
|
122 (defvar display-time-icons-dir (concat data-directory "time/"))
|
104
|
123
|
108
|
124 (defvar display-time-mail-sign-string " Mail"
|
|
125 "The string used as mail indicator in the echo area
|
|
126 (and in the modeline if display-time-show-icons-maybe is nil)
|
|
127 if display-time-echo-area is t")
|
104
|
128
|
108
|
129 (defvar display-time-no-mail-sign-string ""
|
|
130 "The string used as no-mail indicator in the echo area
|
|
131 (and in the modeline if display-time-show-icons-maybe is nil)
|
|
132 if display-time-echo-area is t")
|
|
133
|
|
134 (defvar display-time-mail-sign
|
104
|
135 (progn
|
|
136 (let* ((file (concat display-time-icons-dir "letter.xpm"))
|
108
|
137 (glyph (if (featurep 'xpm) (make-glyph file)
|
|
138 display-time-mail-sign-string))
|
|
139 (ext (make-extent nil nil)))
|
|
140 (cons ext glyph)))
|
|
141 "A variable holding a cons cell (ext . glyph)
|
|
142 which gives an indicator for new mail in the modeline")
|
104
|
143
|
|
144 (defvar display-time-no-mail-sign
|
|
145 (progn
|
|
146 (let* ((file (concat display-time-icons-dir "no-letter.xpm"))
|
108
|
147 (glyph (if (featurep 'xpm) (make-glyph file)
|
|
148 display-time-no-mail-sign-string))
|
|
149 (ext (make-extent nil nil)))
|
|
150 (cons ext glyph)))
|
|
151 "A variable holding a cons cell (ext . glyph) which gives
|
|
152 an indicator for `no mail' in the modeline")
|
|
153
|
|
154 (defun display-time-string-to-char-list (str)
|
|
155 (mapcar (function identity) str))
|
|
156
|
|
157
|
|
158 (if (featurep 'xpm)
|
|
159 (progn
|
|
160 (setq display-time-1-glyph
|
|
161 (cons (make-extent nil nil)
|
|
162 (make-glyph (concat display-time-icons-dir "1.xpm"))))
|
|
163 (setq display-time-2-glyph
|
|
164 (cons (make-extent nil nil)
|
|
165 (make-glyph (concat display-time-icons-dir "2.xpm"))))
|
|
166 (setq display-time-3-glyph
|
|
167 (cons (make-extent nil nil)
|
|
168 (make-glyph (concat display-time-icons-dir "3.xpm"))))
|
|
169 (setq display-time-4-glyph
|
|
170 (cons (make-extent nil nil)
|
|
171 (make-glyph (concat display-time-icons-dir "4.xpm"))))
|
|
172 (setq display-time-5-glyph
|
|
173 (cons (make-extent nil nil)
|
|
174 (make-glyph (concat display-time-icons-dir "5.xpm"))))
|
|
175 (setq display-time-6-glyph
|
|
176 (cons (make-extent nil nil)
|
|
177 (make-glyph (concat display-time-icons-dir "6.xpm"))))
|
|
178 (setq display-time-7-glyph
|
|
179 (cons (make-extent nil nil)
|
|
180 (make-glyph (concat display-time-icons-dir "7.xpm"))))
|
|
181 (setq display-time-8-glyph
|
|
182 (cons (make-extent nil nil)
|
|
183 (make-glyph (concat display-time-icons-dir "8.xpm"))))
|
|
184 (setq display-time-9-glyph
|
|
185 (cons (make-extent nil nil)
|
|
186 (make-glyph (concat display-time-icons-dir "9.xpm"))))
|
|
187 (setq display-time-0-glyph
|
|
188 (cons (make-extent nil nil)
|
|
189 (make-glyph (concat display-time-icons-dir "0.xpm"))))
|
|
190 (setq display-time-:-glyph
|
|
191 (cons (make-extent nil nil)
|
|
192 (make-glyph (concat display-time-icons-dir "dp.xpm"))))
|
|
193 (setq display-time-load-0.0-glyph
|
|
194 (cons (make-extent nil nil)
|
|
195 (make-glyph (concat display-time-icons-dir "l-0.0.xpm"))))
|
|
196 (setq display-time-load-0.5-glyph
|
|
197 (cons (make-extent nil nil)
|
|
198 (make-glyph (concat display-time-icons-dir "l-0.5.xpm"))))
|
|
199 (setq display-time-load-1.0-glyph
|
|
200 (cons (make-extent nil nil)
|
|
201 (make-glyph (concat display-time-icons-dir "l-1.0.xpm"))))
|
|
202 (setq display-time-load-1.5-glyph
|
|
203 (cons (make-extent nil nil)
|
|
204 (make-glyph (concat display-time-icons-dir "l-1.5.xpm"))))
|
|
205 (setq display-time-load-2.0-glyph
|
|
206 (cons (make-extent nil nil)
|
|
207 (make-glyph (concat display-time-icons-dir "l-2.0.xpm"))))
|
|
208 (setq display-time-load-2.5-glyph
|
|
209 (cons (make-extent nil nil)
|
|
210 (make-glyph (concat display-time-icons-dir "l-2.5.xpm"))))
|
|
211 (setq display-time-load-3.0-glyph
|
|
212 (cons (make-extent nil nil)
|
|
213 (make-glyph (concat display-time-icons-dir "l-3.0.xpm"))))
|
|
214 (setq display-time-am-glyph
|
|
215 (cons (make-extent nil nil)
|
|
216 (make-glyph (concat display-time-icons-dir "am.xpm"))))
|
|
217 (setq display-time-pm-glyph
|
|
218 (cons (make-extent nil nil)
|
|
219 (make-glyph (concat display-time-icons-dir "pm.xpm"))))
|
|
220 ))
|
104
|
221
|
|
222
|
108
|
223 (defun display-time-convert-num-to-pics (string)
|
|
224 (let ((list (display-time-string-to-char-list string))
|
|
225 elem result tmp)
|
|
226 (if (not (and display-time-show-icons-maybe
|
|
227 (eq (console-type) 'x)
|
|
228 (not display-time-echo-area))) string
|
|
229 (while (setq elem (pop list))
|
|
230 (push (eval (intern-soft (concat "display-time-"
|
|
231 (char-to-string elem)
|
|
232 "-glyph"))) tmp))
|
|
233 (setq result (reverse tmp)))))
|
|
234
|
|
235 (defvar display-time-load-list
|
|
236 (list 0.2 0.5 0.8 1.1 1.8 2.6)
|
|
237 "*A list giving six thresholds for the load which correspond
|
|
238 to the six different icons to be displayed as a load indicator")
|
|
239
|
|
240 (defun display-time-convert-load-to-glyph (n)
|
|
241 (let ((load-number (string-to-number n))
|
|
242 (alist (list (cons 0.0 0.0)
|
|
243 (cons 0.5 (car display-time-load-list))
|
|
244 (cons 1.0 (cadr display-time-load-list))
|
|
245 (cons 1.5 (caddr display-time-load-list))
|
|
246 (cons 2.0 (cadddr display-time-load-list))
|
|
247 (cons 2.5 (cadr (cdddr display-time-load-list)))
|
|
248 (cons 3.0 (caddr (cdddr display-time-load-list)))
|
|
249 (cons 100000 100000)))
|
|
250 result elem)
|
|
251 (if (not (and display-time-show-icons-maybe
|
|
252 (eq (console-type) 'x)
|
|
253 (not display-time-echo-area))) n
|
|
254 (while (>= load-number (cdr (setq elem (pop alist))))
|
|
255 (setq result (eval (intern-soft (concat
|
|
256 "display-time-load-"
|
|
257 (number-to-string (car elem))
|
|
258 "-glyph")))))
|
|
259 result)))
|
|
260
|
|
261 (defun display-time-convert-am-pm (n)
|
|
262 (if (not (and display-time-show-icons-maybe
|
|
263 (eq (console-type) 'x)
|
|
264 (not display-time-echo-area))) n
|
|
265 (cond ((equal n "am") display-time-am-glyph)
|
|
266 ((equal n "pm") display-time-pm-glyph))))
|
|
267
|
|
268
|
|
269 (defun display-time-mail-sign ()
|
|
270 "*A function giving back the object indicating 'mail' which
|
|
271 is the value of display-time-mail-sign when running under X,
|
|
272 display-time-echo-area is nil and display-time-show-icons-maybe is t.
|
|
273 It is the value of display-time-mail-sign-string otherwise."
|
|
274 (if (or (not (eq (console-type) 'x))
|
|
275 display-time-echo-area
|
|
276 (not display-time-show-icons-maybe))
|
|
277 display-time-mail-sign-string
|
|
278 display-time-mail-sign))
|
|
279
|
|
280 (defun display-time-no-mail-sign ()
|
|
281 "*A function giving back the object indicating 'no mail' which
|
|
282 is the value of display-time-no-mail-sign when running under X,
|
|
283 display-time-echo-area is nil and display-time-show-icons-maybe is t.
|
|
284 It is the value of display-time-no-mail-sign-string otherwise."
|
|
285 (if (or (not (eq (console-type) 'x))
|
|
286 display-time-echo-area
|
|
287 (not display-time-show-icons-maybe))
|
|
288 display-time-no-mail-sign-string
|
|
289 display-time-no-mail-sign))
|
|
290
|
|
291 (defvar display-time-form-list
|
|
292 (list 'date-compatible 'time-compatible 'load 'mail)
|
|
293 "*This list describes the format of the strings/glyphs which are to be
|
|
294 displayed by display-time. The old variable display-time-string-forms is
|
|
295 only used if display-time-compatible is non-nil. It is a list consisting of
|
|
296 strings or any of the following symbols:
|
|
297
|
|
298 date-compatible: This prints out the date in a manner compatible to
|
|
299 the default value of the obsolete variable
|
|
300 display-time-string-forms. It respects the variable
|
|
301 display-time-day-and-date. If this is t it will print
|
|
302 out the current date in the form DAYNAME MONTH DAY
|
|
303 otherwise it will print nothing.
|
|
304
|
|
305 time-compatible: This prints out the time in a manner compatible to
|
|
306 the default value of the obsolete variable
|
|
307 display-time-string-forms. It respects the variable
|
|
308 display-time-24hr-format. If this is t it will print
|
|
309 out the current hours in 24-hour format, if nil the
|
|
310 hours will be printed in 12-hour format and the
|
|
311 minutes will be followed by 'AM' or 'PM'.
|
|
312
|
|
313 24-hours: This prints the hours in 24-hours format
|
|
314
|
|
315 12-hours: This prints the hours in 12-hours format
|
|
316
|
|
317 am-pm: This prints Am or Pm.
|
|
318
|
|
319 dp: This prints a \":\", maybe as an icon
|
|
320
|
|
321 minutes: This prints the minutes.
|
|
322
|
|
323 day: This prints out the current day as a number.
|
|
324
|
|
325 dayname: This prints out today's name.
|
|
326
|
|
327 month: This prints out the current month as a number
|
|
328
|
|
329 monthname: This prints out the current month's name
|
|
330
|
|
331 load: This prints out the system's load.
|
|
332
|
|
333 mail: This displays a mail indicator. Under X this will
|
|
334 normally be a small icon which changes depending if
|
|
335 there is new mail or not.")
|
|
336
|
|
337 (defun display-time-evaluate-list ()
|
|
338 "Evalute the variable display-time-form-list"
|
|
339 (let ((list display-time-form-list) elem tmp result)
|
|
340 (while (setq elem (pop list))
|
|
341 (cond ((stringp elem) (push elem tmp))
|
|
342 ((eq elem 'date-compatible)
|
|
343 (push (if display-time-day-and-date
|
|
344 (format "%s %s %s " dayname monthname day) "") tmp))
|
|
345 ((eq elem 'time-compatible)
|
|
346 (progn
|
|
347 (push (display-time-convert-num-to-pics
|
|
348 (format "%s:%s"
|
|
349 (if display-time-24hr-format 24-hours 12-hours)
|
|
350 minutes)) tmp)
|
|
351 (if (not display-time-24hr-format)
|
|
352 (push (display-time-convert-am-pm am-pm) tmp))))
|
|
353 ((eq elem 'day) (push day tmp))
|
|
354 ((eq elem 'dayname) (push dayname tmp))
|
|
355 ((eq elem 'month) (push month tmp))
|
|
356 ((eq elem 'monthname) (push monthname tmp))
|
|
357 ((eq elem '24-hours) (push (display-time-convert-num-to-pics 24-hours)
|
|
358 tmp))
|
|
359 ((eq elem '12-hours) (push (display-time-convert-num-to-pics 12-hours)
|
|
360 tmp))
|
|
361 ((eq elem 'minutes) (push (display-time-convert-num-to-pics minutes)
|
|
362 tmp))
|
|
363 ((eq elem 'am-pm) (push am-pm tmp))
|
|
364 ((eq elem 'dp) (push (display-time-convert-num-to-pics ":") tmp))
|
|
365 ((eq elem 'load)
|
|
366 (push (display-time-convert-load-to-glyph load) tmp))
|
|
367 ((eq elem 'mail) (push (if mail (display-time-mail-sign)
|
|
368 (display-time-no-mail-sign))
|
|
369 tmp))))
|
|
370 ;; We know that we have a list containing only of strings if
|
|
371 ;; display-time-echo-area is t. So we construct this string from
|
|
372 ;; the list. Else we just reverse the list and give it as result.
|
|
373 (if (not display-time-echo-area) (setq result (reverse tmp))
|
|
374 (while (setq elem (pop tmp))
|
|
375 (setq result (concat elem result))))
|
|
376 result))
|
|
377
|
|
378
|
0
|
379 (defvar display-time-string-forms
|
|
380 '((if display-time-day-and-date
|
|
381 (format "%s %s %s " dayname monthname day)
|
|
382 "")
|
|
383 (format "%s:%s%s"
|
|
384 (if display-time-24hr-format 24-hours 12-hours)
|
|
385 minutes
|
|
386 (if display-time-24hr-format "" am-pm))
|
108
|
387 load
|
|
388 (if mail " Mail" ""))
|
|
389 "*THIS IS OBSOLETE! It will only be used if display-time-compatible is t.
|
|
390 A list of expressions governing display of the time in the mode line.
|
0
|
391 This expression is a list of expressions that can involve the keywords
|
|
392 `load', `day', `month', and `year', `12-hours', `24-hours', `minutes',
|
|
393 `seconds', all numbers in string form, and `monthname', `dayname', `am-pm',
|
104
|
394 and `time-zone' all alphabetic strings and `mail' a true/nil string value.
|
0
|
395
|
|
396 For example, the form
|
|
397
|
|
398 '((substring year -2) \"/\" month \"/\" day
|
|
399 \" \" 24-hours \":\" minutes \":\" seconds
|
104
|
400 (if time-zone \" (\") time-zone (if time-zone \")\"))
|
0
|
401
|
|
402 would give mode line times like `94/12/30 21:07:48 (UTC)'.")
|
|
403
|
|
404 (defun display-time-function ()
|
|
405 (let* ((now (current-time))
|
|
406 (time (current-time-string now))
|
|
407 (load (condition-case ()
|
|
408 (if (zerop (car (load-average))) ""
|
|
409 (let ((str (format " %03d" (car (load-average)))))
|
|
410 (concat (substring str 0 -2) "." (substring str -2))))
|
|
411 (error "")))
|
|
412 (mail-spool-file (or display-time-mail-file
|
|
413 (getenv "MAIL")
|
|
414 (concat rmail-spool-directory
|
|
415 (user-login-name))))
|
|
416 (mail (and (stringp mail-spool-file)
|
|
417 (or (null display-time-server-down-time)
|
|
418 ;; If have been down for 20 min, try again.
|
|
419 (> (- (nth 1 (current-time))
|
|
420 display-time-server-down-time)
|
|
421 1200))
|
|
422 (let ((start-time (current-time)))
|
|
423 (prog1
|
|
424 (display-time-file-nonempty-p mail-spool-file)
|
|
425 (if (> (- (nth 1 (current-time)) (nth 1 start-time))
|
|
426 20)
|
|
427 ;; Record that mail file is not accessible.
|
|
428 (setq display-time-server-down-time
|
|
429 (nth 1 (current-time)))
|
|
430 ;; Record that mail file is accessible.
|
|
431 (setq display-time-server-down-time nil))))))
|
|
432 (24-hours (substring time 11 13))
|
|
433 (hour (string-to-int 24-hours))
|
|
434 (12-hours (int-to-string (1+ (% (+ hour 11) 12))))
|
|
435 (am-pm (if (>= hour 12) "pm" "am"))
|
|
436 (minutes (substring time 14 16))
|
|
437 (seconds (substring time 17 19))
|
|
438 (time-zone (car (cdr (current-time-zone now))))
|
|
439 (day (substring time 8 10))
|
|
440 (year (substring time 20 24))
|
|
441 (monthname (substring time 4 7))
|
|
442 (month
|
|
443 (cdr
|
|
444 (assoc
|
|
445 monthname
|
|
446 '(("Jan" . "1") ("Feb" . "2") ("Mar" . "3") ("Apr" . "4")
|
|
447 ("May" . "5") ("Jun" . "6") ("Jul" . "7") ("Aug" . "8")
|
|
448 ("Sep" . "9") ("Oct" . "10") ("Nov" . "11") ("Dec" . "12")))))
|
|
449 (dayname (substring time 0 3)))
|
|
450 (setq display-time-string
|
108
|
451 (if display-time-compatible
|
|
452 (mapconcat 'eval display-time-string-forms "")
|
|
453 (display-time-evaluate-list)))
|
0
|
454 ;; This is inside the let binding, but we are not going to document
|
|
455 ;; what variables are available.
|
|
456 (run-hooks 'display-time-hook))
|
|
457 (if display-time-echo-area
|
|
458 (or (> (minibuffer-depth) 0)
|
|
459 ;; don't stomp echo-area-buffer if reading from minibuffer now.
|
|
460 (save-excursion
|
|
461 (save-window-excursion
|
|
462 (select-window (minibuffer-window))
|
|
463 (erase-buffer)
|
70
|
464 (indent-to (- (screen-width) (length display-time-string) 1))
|
0
|
465 (insert display-time-string)
|
|
466 (message (buffer-string)))))
|
|
467 (force-mode-line-update)
|
|
468 ;; Do redisplay right now, if no input pending.
|
|
469 (sit-for 0)))
|
|
470
|
|
471 (defun display-time-file-nonempty-p (file)
|
70
|
472 (and (file-exists-p file)
|
|
473 (< 0 (nth 7 (file-attributes (file-chase-links file))))))
|
0
|
474
|
|
475 (provide 'time)
|
|
476
|
|
477 ;;; time.el ends here
|