Convert consecutive FSF copyright years to ranges.
[bpt/emacs.git] / lisp / time.el
CommitLineData
b7eb6e8a 1;;; time.el --- display time, load and mail indicator in mode line of Emacs -*-coding: utf-8 -*-
c2acf685 2
73b0cd50 3;; Copyright (C) 1985-1987, 1993-1994, 1996, 2000-2011 Free Software Foundation, Inc.
c2acf685
SM
4
5;; Maintainer: FSF
6
7;; This file is part of GNU Emacs.
8
eb3fa2cf 9;; GNU Emacs is free software: you can redistribute it and/or modify
c2acf685 10;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
11;; the Free Software Foundation, either version 3 of the License, or
12;; (at your option) any later version.
c2acf685
SM
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
eb3fa2cf 20;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
c2acf685
SM
21
22;;; Commentary:
23
24;; Facilities to display current time/date and a new-mail indicator
aff2ba04
RS
25;; in the Emacs mode line. The entry point is `display-time'.
26
27;; Display time world in a buffer, the entry point is
28;; `display-time-world'.
c2acf685
SM
29
30;;; Code:
31
32(defgroup display-time nil
33 "Display time and load in mode line of Emacs."
97904e51 34 :group 'mode-line
c2acf685
SM
35 :group 'mail)
36
37
c2acf685 38(defcustom display-time-mail-file nil
9201cc28 39 "File name of mail inbox file, for indicating existence of new mail.
cbb7527f 40Non-nil and not a string means don't check for mail; nil means use
c2acf685 41default, which is system-dependent, and is the same as used by Rmail."
fe6456af 42 :type '(choice (const :tag "None" none)
c2acf685
SM
43 (const :tag "Default" nil)
44 (file :format "%v"))
45 :group 'display-time)
46
cc351ed4 47(defcustom display-time-mail-directory nil
9201cc28 48 "Name of mail inbox directory, for indicating existence of new mail.
ad68bb68
RS
49Any nonempty regular file in the directory is regarded as newly arrived mail.
50If nil, do not check a directory for arriving mail."
cc351ed4
PJ
51 :type '(choice (const :tag "None" nil)
52 (directory :format "%v"))
53 :group 'display-time)
54
c2acf685 55(defcustom display-time-mail-function nil
9201cc28 56 "Function to call, for indicating existence of new mail.
ad68bb68
RS
57If nil, that means use the default method: check that the file
58specified by `display-time-mail-file' is nonempty or that the
59directory `display-time-mail-directory' contains nonempty files."
c2acf685
SM
60 :type '(choice (const :tag "Default" nil)
61 (function))
62 :group 'display-time)
63
4b05e68d 64(defcustom display-time-default-load-average 0
9201cc28 65 "Which load average value will be shown in the mode line.
4b05e68d 66Almost every system can provide values of load for past 1 minute, past 5 or
f2f56691 67past 15 minutes. The default is to display 1 minute load average.
3deeb46b
GM
68The value can be one of:
69
70 0 => 1 minute load
71 1 => 5 minutes load
72 2 => 15 minutes load"
4b05e68d
PJ
73 :type '(choice (const :tag "1 minute load" 0)
74 (const :tag "5 minutes load" 1)
fe6456af
RS
75 (const :tag "15 minutes load" 2)
76 (const :tag "None" nil))
4b05e68d
PJ
77 :group 'display-time)
78
fe6456af 79(defvar display-time-load-average nil
b7eb6e8a 80 "Load average currently being shown in mode line.")
4b05e68d
PJ
81
82(defcustom display-time-load-average-threshold 0.1
9201cc28 83 "Load-average values below this value won't be shown in the mode line."
b7b4e4d4
PJ
84 :type 'number
85 :group 'display-time)
4b05e68d 86
c2acf685
SM
87;;;###autoload
88(defcustom display-time-day-and-date nil "\
7c7c04c0 89Non-nil means \\[display-time] should display day and date as well as time."
c2acf685
SM
90 :type 'boolean
91 :group 'display-time)
92
93(defvar display-time-timer nil)
94
95(defcustom display-time-interval 60
9201cc28 96 "Seconds between updates of time in the mode line."
c2acf685
SM
97 :type 'integer
98 :group 'display-time)
99
100(defcustom display-time-24hr-format nil
9201cc28 101 "Non-nil indicates time should be displayed as hh:mm, 0 <= hh <= 23.
7d326782 102A value of nil means 1 <= hh <= 12, and an AM/PM suffix is used."
c2acf685
SM
103 :type 'boolean
104 :group 'display-time)
105
106(defvar display-time-string nil)
6dc3311d 107;;;###autoload(put 'display-time-string 'risky-local-variable t)
c2acf685
SM
108
109(defcustom display-time-hook nil
9201cc28 110 "List of functions to be called when the time is updated on the mode line."
c2acf685
SM
111 :type 'hook
112 :group 'display-time)
113
114(defvar display-time-server-down-time nil
115 "Time when mail file's file system was recorded to be down.
116If that file system seems to be up, the value is nil.")
117
dca2168c 118(defcustom zoneinfo-style-world-list
aff2ba04
RS
119 '(("America/Los_Angeles" "Seattle")
120 ("America/New_York" "New York")
121 ("Europe/London" "London")
122 ("Europe/Paris" "Paris")
123 ("Asia/Calcutta" "Bangalore")
124 ("Asia/Tokyo" "Tokyo"))
dca2168c
EZ
125 "Alist of zoneinfo-style time zones and places for `display-time-world'.
126Each element has the form (TIMEZONE LABEL).
127TIMEZONE should be a string of the form AREA/LOCATION, where AREA is
128the name of a region -- a continent or ocean, and LOCATION is the name
129of a specific location, e.g., a city, within that region.
130LABEL is a string to display as the label of that TIMEZONE's time."
131 :group 'display-time
132 :type '(repeat (list string string))
133 :version "23.1")
134
135(defcustom legacy-style-world-list
136 '(("PST8PDT" "Seattle")
137 ("EST5EDT" "New York")
9db0c29b 138 ("GMT0BST" "London")
dca2168c 139 ("CET-1CDT" "Paris")
9db0c29b
EZ
140 ("IST-5:30" "Bangalore")
141 ("JST-9" "Tokyo"))
dca2168c
EZ
142 "Alist of traditional-style time zones and places for `display-time-world'.
143Each element has the form (TIMEZONE LABEL).
144TIMEZONE should be a string of the form:
145
146 std[+|-]offset[dst[offset][,date[/time],date[/time]]]
147
148See the documentation of the TZ environment variable on your system,
149for more details about the format of TIMEZONE.
150LABEL is a string to display as the label of that TIMEZONE's time."
151 :group 'display-time
152 :type '(repeat (list string string))
153 :version "23.1")
154
155(defcustom display-time-world-list
36d4b145
JR
156 ;; Determine if zoneinfo style timezones are supported by testing that
157 ;; America/New York and Europe/London return different timezones.
158 (let (gmt nyt)
159 (set-time-zone-rule "America/New York")
160 (setq nyt (format-time-string "%z"))
161 (set-time-zone-rule "Europe/London")
162 (setq gmt (format-time-string "%z"))
163 (set-time-zone-rule nil)
164 (if (string-equal nyt gmt)
165 legacy-style-world-list
166 zoneinfo-style-world-list))
dca2168c 167 "Alist of time zones and places for `display-time-world' to display.
aff2ba04 168Each element has the form (TIMEZONE LABEL).
dca2168c
EZ
169TIMEZONE should be in the format supported by `set-time-zone-rule' on
170your system. See the documentation of `zoneinfo-style-world-list' and
171\`legacy-style-world-list' for two widely used formats.
172LABEL is a string to display as the label of that TIMEZONE's time."
aff2ba04
RS
173 :group 'display-time
174 :type '(repeat (list string string))
175 :version "23.1")
176
658dcd47 177(defcustom display-time-world-time-format "%A %d %B %R %Z"
aff2ba04
RS
178 "Format of the time displayed, see `format-time-string'."
179 :group 'display-time
180 :type 'string
181 :version "23.1")
182
183(defcustom display-time-world-buffer-name "*wclock*"
7c7c04c0 184 "Name of the world clock buffer."
aff2ba04
RS
185 :group 'display-time
186 :type 'string
187 :version "23.1")
188
189(defcustom display-time-world-timer-enable t
190 "If non-nil, a timer will update the world clock."
191 :group 'display-time
192 :type 'boolean
193 :version "23.1")
194
195(defcustom display-time-world-timer-second 60
196 "Interval in seconds for updating the world clock."
197 :group 'display-time
198 :type 'integer
199 :version "23.1")
200
201(defvar display-time-world-mode-map
202 (let ((map (make-sparse-keymap)))
203 (define-key map "q" 'kill-this-buffer)
204 map)
7c7c04c0 205 "Keymap of Display Time World mode.")
aff2ba04 206
c2acf685
SM
207;;;###autoload
208(defun display-time ()
209 "Enable display of time, load level, and mail flag in mode lines.
210This display updates automatically every minute.
211If `display-time-day-and-date' is non-nil, the current day and date
212are displayed as well.
213This runs the normal hook `display-time-hook' after each update."
214 (interactive)
215 (display-time-mode 1))
216
b7eb6e8a
DL
217;; This business used to be simpler when all mode lines had the same
218;; face and the image could just be pbm. Now we try to rely on an xpm
219;; image with a transparent background. Otherwise, set the background
220;; for pbm.
221
222(defcustom display-time-mail-face nil
c2acf685 223 "Face to use for `display-time-mail-string'.
b7eb6e8a 224If `display-time-use-mail-icon' is non-nil, the image's
6bd47b39
JB
225background color is the background of this face. Set this to
226make the mail indicator stand out on a color display."
83033a3a 227 :group 'mode-line-faces
c2acf685 228 :group 'display-time
bf247b6e 229 :version "22.1"
b7eb6e8a 230 :type '(choice (const :tag "None" nil) face))
c2acf685
SM
231
232(defvar display-time-mail-icon
cc351ed4 233 (find-image '((:type xpm :file "letter.xpm" :ascent center)
b7eb6e8a
DL
234 (:type pbm :file "letter.pbm" :ascent center)))
235 "Image specification to offer as the mail indicator on a graphic display.
236See `display-time-use-mail-icon' and `display-time-mail-face'.")
c2acf685 237
b7eb6e8a 238;; Fixme: Default to icon on graphical display?
c2acf685 239(defcustom display-time-use-mail-icon nil
d7baab9c 240 "Non-nil means use an icon as mail indicator on a graphic display.
b7eb6e8a
DL
241Otherwise use `display-time-mail-string'. The icon may consume less
242of the mode line. It is specified by `display-time-mail-icon'."
c2acf685
SM
243 :group 'display-time
244 :type 'boolean)
245
b7eb6e8a
DL
246;; Fixme: maybe default to the character if we can display Unicode.
247(defcustom display-time-mail-string "Mail"
248 "String to use as the mail indicator in `display-time-string-forms'.
249This can use the Unicode letter character if you can display it."
250 :group 'display-time
bf247b6e 251 :version "22.1"
b7eb6e8a
DL
252 :type '(choice (const "Mail")
253 ;; Use :tag here because the Lucid menu won't display
254 ;; multibyte text.
255 (const :tag "Unicode letter character" "✉")
256 string))
257
c2acf685 258(defcustom display-time-format nil
9201cc28 259 "String specifying format for displaying the time in the mode line.
c2acf685
SM
260See the function `format-time-string' for an explanation of
261how to write this string. If this is nil, the defaults
262depend on `display-time-day-and-date' and `display-time-24hr-format'."
263 :type '(choice (const :tag "Default" nil)
264 string)
265 :group 'display-time)
266
267(defcustom display-time-string-forms
268 '((if (and (not display-time-format) display-time-day-and-date)
269 (format-time-string "%a %b %e " now)
270 "")
e93b2f39
SM
271 (propertize
272 (format-time-string (or display-time-format
273 (if display-time-24hr-format "%H:%M" "%-I:%M%p"))
274 now)
ef3e9175 275 'help-echo (format-time-string "%a %b %e, %Y" now))
c2acf685
SM
276 load
277 (if mail
278 ;; Build the string every time to act on customization.
b7eb6e8a
DL
279 ;; :set-after doesn't help for `customize-option'. I think it
280 ;; should.
281 (concat
282 " "
283 (propertize
284 display-time-mail-string
285 'display `(when (and display-time-use-mail-icon
286 (display-graphic-p))
287 ,@display-time-mail-icon
288 ,@(if (and display-time-mail-face
289 (memq (plist-get (cdr display-time-mail-icon)
290 :type)
291 '(pbm xbm)))
292 (let ((bg (face-attribute display-time-mail-face
293 :background)))
294 (if (stringp bg)
295 (list :background bg)))))
296 'face display-time-mail-face
297 'help-echo "You have new mail; mouse-2: Read mail"
3a02b63e 298 'mouse-face 'mode-line-highlight
b7eb6e8a
DL
299 'local-map (make-mode-line-mouse-map 'mouse-2
300 read-mail-command)))
c2acf685 301 ""))
9201cc28 302 "List of expressions governing display of the time in the mode line.
c2acf685
SM
303For most purposes, you can control the time format using `display-time-format'
304which is a more standard interface.
305
306This expression is a list of expressions that can involve the keywords
307`load', `day', `month', and `year', `12-hours', `24-hours', `minutes',
308`seconds', all numbers in string form, and `monthname', `dayname', `am-pm',
309and `time-zone' all alphabetic strings, and `mail' a true/nil value.
310
311For example, the form
312
313 '((substring year -2) \"/\" month \"/\" day
314 \" \" 24-hours \":\" minutes \":\" seconds
315 (if time-zone \" (\") time-zone (if time-zone \")\")
316 (if mail \" Mail\" \"\"))
317
318would give mode line times like `94/12/30 21:07:48 (UTC)'."
319 :type 'sexp
320 :group 'display-time)
321
322(defun display-time-event-handler ()
323 (display-time-update)
324 ;; Do redisplay right now, if no input pending.
325 (sit-for 0)
326 (let* ((current (current-time))
327 (timer display-time-timer)
328 ;; Compute the time when this timer will run again, next.
329 (next-time (timer-relative-time
330 (list (aref timer 1) (aref timer 2) (aref timer 3))
331 (* 5 (aref timer 4)) 0)))
332 ;; If the activation time is far in the past,
333 ;; skip executions until we reach a time in the future.
334 ;; This avoids a long pause if Emacs has been suspended for hours.
335 (or (> (nth 0 next-time) (nth 0 current))
336 (and (= (nth 0 next-time) (nth 0 current))
337 (> (nth 1 next-time) (nth 1 current)))
338 (and (= (nth 0 next-time) (nth 0 current))
339 (= (nth 1 next-time) (nth 1 current))
340 (> (nth 2 next-time) (nth 2 current)))
341 (progn
342 (timer-set-time timer (timer-next-integral-multiple-of-time
343 current display-time-interval)
344 display-time-interval)
345 (timer-activate timer)))))
346
4b05e68d
PJ
347(defun display-time-next-load-average ()
348 (interactive)
349 (if (= 3 (setq display-time-load-average (1+ display-time-load-average)))
350 (setq display-time-load-average 0))
351 (display-time-update)
352 (sit-for 0))
353
cc351ed4
PJ
354(defun display-time-mail-check-directory ()
355 (let ((mail-files (directory-files display-time-mail-directory t))
356 (size 0))
357 (while (and mail-files (= size 0))
358 ;; Count size of regular files only.
359 (setq size (+ size (or (and (file-regular-p (car mail-files))
360 (nth 7 (file-attributes (car mail-files))))
361 0)))
362 (setq mail-files (cdr mail-files)))
363 (if (> size 0)
364 size
365 nil)))
366
c2acf685 367(defun display-time-update ()
b7eb6e8a
DL
368 "Update the display-time info for the mode line.
369However, don't redisplay right now.
370
371This is used for things like Rmail `g' that want to force an
372update which can wait for the next redisplay."
c2acf685
SM
373 (let* ((now (current-time))
374 (time (current-time-string now))
fe6456af
RS
375 (load (if (null display-time-load-average)
376 ""
377 (condition-case ()
378 ;; Do not show values less than
379 ;; `display-time-load-average-threshold'.
380 (if (> (* display-time-load-average-threshold 100)
381 (nth display-time-load-average (load-average)))
382 ""
383 ;; The load average number is mysterious, so
384 ;; provide some help.
b7eb6e8a
DL
385 (let ((str (format " %03d"
386 (nth display-time-load-average
387 (load-average)))))
fe6456af
RS
388 (propertize
389 (concat (substring str 0 -2) "." (substring str -2))
b7eb6e8a
DL
390 'local-map (make-mode-line-mouse-map
391 'mouse-2 'display-time-next-load-average)
3a02b63e 392 'mouse-face 'mode-line-highlight
b7eb6e8a
DL
393 'help-echo (concat
394 "System load average for past "
395 (if (= 0 display-time-load-average)
396 "1 minute"
397 (if (= 1 display-time-load-average)
398 "5 minutes"
399 "15 minutes"))
400 "; mouse-2: next"))))
fe6456af 401 (error ""))))
c2acf685
SM
402 (mail-spool-file (or display-time-mail-file
403 (getenv "MAIL")
404 (concat rmail-spool-directory
405 (user-login-name))))
406 (mail (or (and display-time-mail-function
407 (funcall display-time-mail-function))
cc351ed4
PJ
408 (and display-time-mail-directory
409 (display-time-mail-check-directory))
c2acf685
SM
410 (and (stringp mail-spool-file)
411 (or (null display-time-server-down-time)
412 ;; If have been down for 20 min, try again.
413 (> (- (nth 1 now) display-time-server-down-time)
414 1200)
415 (and (< (nth 1 now) display-time-server-down-time)
b7eb6e8a
DL
416 (> (- (nth 1 now)
417 display-time-server-down-time)
c2acf685
SM
418 -64336)))
419 (let ((start-time (current-time)))
420 (prog1
421 (display-time-file-nonempty-p mail-spool-file)
b7eb6e8a
DL
422 (if (> (- (nth 1 (current-time))
423 (nth 1 start-time))
c2acf685
SM
424 20)
425 ;; Record that mail file is not accessible.
426 (setq display-time-server-down-time
427 (nth 1 (current-time)))
428 ;; Record that mail file is accessible.
429 (setq display-time-server-down-time nil)))))))
430 (24-hours (substring time 11 13))
027a4b6b 431 (hour (string-to-number 24-hours))
c2acf685
SM
432 (12-hours (int-to-string (1+ (% (+ hour 11) 12))))
433 (am-pm (if (>= hour 12) "pm" "am"))
434 (minutes (substring time 14 16))
435 (seconds (substring time 17 19))
436 (time-zone (car (cdr (current-time-zone now))))
437 (day (substring time 8 10))
438 (year (substring time 20 24))
439 (monthname (substring time 4 7))
440 (month
441 (cdr
442 (assoc
443 monthname
444 '(("Jan" . "1") ("Feb" . "2") ("Mar" . "3") ("Apr" . "4")
445 ("May" . "5") ("Jun" . "6") ("Jul" . "7") ("Aug" . "8")
446 ("Sep" . "9") ("Oct" . "10") ("Nov" . "11") ("Dec" . "12")))))
447 (dayname (substring time 0 3)))
448 (setq display-time-string
449 (mapconcat 'eval display-time-string-forms ""))
450 ;; This is inside the let binding, but we are not going to document
451 ;; what variables are available.
452 (run-hooks 'display-time-hook))
453 (force-mode-line-update))
454
455(defun display-time-file-nonempty-p (file)
4bc3c53d
MA
456 (let ((remote-file-name-inhibit-cache (- display-time-interval 5)))
457 (and (file-exists-p file)
458 (< 0 (nth 7 (file-attributes (file-chase-links file)))))))
c2acf685 459
57ce63c4
SM
460;;;###autoload
461(define-minor-mode display-time-mode
462 "Toggle display of time, load level, and mail flag in mode lines.
463With a numeric arg, enable this display if arg is positive.
464
6491af11
EZ
465When this display is enabled, it updates automatically every minute
466\(you can control the number of seconds between updates by
467customizing `display-time-interval').
57ce63c4
SM
468If `display-time-day-and-date' is non-nil, the current day and date
469are displayed as well.
470This runs the normal hook `display-time-hook' after each update."
bb7a71c5 471 :global t :group 'display-time
fe6456af
RS
472 (and display-time-timer (cancel-timer display-time-timer))
473 (setq display-time-timer nil)
474 (setq display-time-string "")
475 (or global-mode-string (setq global-mode-string '("")))
476 (setq display-time-load-average display-time-default-load-average)
477 (if display-time-mode
478 (progn
479 (or (memq 'display-time-string global-mode-string)
480 (setq global-mode-string
481 (append global-mode-string '(display-time-string))))
482 ;; Set up the time timer.
483 (setq display-time-timer
484 (run-at-time t display-time-interval
485 'display-time-event-handler))
486 ;; Make the time appear right away.
487 (display-time-update)
488 ;; When you get new mail, clear "Mail" from the mode line.
489 (add-hook 'rmail-after-get-new-mail-hook
490 'display-time-event-handler))
491 (remove-hook 'rmail-after-get-new-mail-hook
492 'display-time-event-handler)))
c2acf685 493
aff2ba04 494
16f3ade5 495(define-derived-mode display-time-world-mode nil "World clock"
aff2ba04
RS
496 "Major mode for buffer that displays times in various time zones.
497See `display-time-world'."
16f3ade5 498 (setq show-trailing-whitespace nil))
aff2ba04
RS
499
500(defun display-time-world-display (alist)
501 "Replace current buffer text with times in various zones, based on ALIST."
502 (let ((inhibit-read-only t)
503 (buffer-undo-list t))
504 (erase-buffer)
505 (let ((max-width 0)
16f3ade5
JB
506 (result ())
507 fmt)
aff2ba04
RS
508 (unwind-protect
509 (dolist (zone alist)
510 (let* ((label (cadr zone))
511 (width (string-width label)))
512 (set-time-zone-rule (car zone))
16f3ade5
JB
513 (push (cons label
514 (format-time-string display-time-world-time-format))
515 result)
aff2ba04
RS
516 (when (> width max-width)
517 (setq max-width width))))
518 (set-time-zone-rule nil))
16f3ade5
JB
519 (setq fmt (concat "%-" (int-to-string max-width) "s %s\n"))
520 (dolist (timedata (nreverse result))
521 (insert (format fmt (car timedata) (cdr timedata)))))
d355a0b7 522 (delete-char -1)))
aff2ba04
RS
523
524;;;###autoload
525(defun display-time-world ()
526 "Enable updating display of times in various time zones.
527`display-time-world-list' specifies the zones.
528To turn off the world time display, go to that window and type `q'."
529 (interactive)
530 (when (and display-time-world-timer-enable
531 (not (get-buffer display-time-world-buffer-name)))
532 (run-at-time t display-time-world-timer-second 'display-time-world-timer))
533 (with-current-buffer (get-buffer-create display-time-world-buffer-name)
534 (display-time-world-display display-time-world-list))
535 (pop-to-buffer display-time-world-buffer-name)
536 (fit-window-to-buffer)
537 (display-time-world-mode))
538
539(defun display-time-world-timer ()
540 (if (get-buffer display-time-world-buffer-name)
541 (with-current-buffer (get-buffer display-time-world-buffer-name)
542 (display-time-world-display display-time-world-list))
543 ;; cancel timer
544 (let ((list timer-list))
545 (while list
546 (let ((elt (pop list)))
547 (when (equal (symbol-name (aref elt 5)) "display-time-world-timer")
548 (cancel-timer elt)))))))
549
2736785a 550;;;###autoload
04e56139
GM
551(defun emacs-uptime (&optional format)
552 "Return a string giving the uptime of this instance of Emacs.
553FORMAT is a string to format the result, using `format-seconds'.
554For example, the Unix uptime command format is \"%D, %z%2h:%.2m\"."
2736785a
GM
555 (interactive)
556 (let ((str
04e56139 557 (format-seconds (or format "%Y, %D, %H, %M, %z%S")
0d00c61c 558 (float-time
e279593d 559 (time-subtract (current-time) before-init-time)))))
32226619 560 (if (called-interactively-p 'interactive)
2736785a
GM
561 (message "%s" str)
562 str)))
563
24d6c292
JL
564;;;###autoload
565(defun emacs-init-time ()
566 "Return a string giving the duration of the Emacs initialization."
567 (interactive)
568 (let ((str
ac1efd51 569 (format "%.1f seconds"
0d00c61c 570 (float-time
ac1efd51 571 (time-subtract after-init-time before-init-time)))))
32226619 572 (if (called-interactively-p 'interactive)
24d6c292
JL
573 (message "%s" str)
574 str)))
575
c2acf685
SM
576(provide 'time)
577
578;;; time.el ends here