]> git.eshelyaron.com Git - emacs.git/commitdiff
(display-time): Fix start time for run-at-time.
authorKarl Heuer <kwzh@gnu.org>
Sat, 13 Jul 1996 17:53:53 +0000 (17:53 +0000)
committerKarl Heuer <kwzh@gnu.org>
Sat, 13 Jul 1996 17:53:53 +0000 (17:53 +0000)
lisp/time.el

index 473135d570020152c595b6bde1deb0cc14a6dd25..08c2f86c82c08cd41d198282ad7cee24571cb87d 100644 (file)
@@ -71,7 +71,10 @@ After each update, `display-time-hook' is run with `run-hooks'."
   ;; Setup the time timer.
   (and display-time-timer (cancel-timer display-time-timer))
   (setq display-time-timer
-       (run-at-time nil display-time-interval 'display-time-event-handler))
+        ;; Start timer at the beginning of the current minute so that
+        ;; it updates as soon as the minute changes.
+       (run-at-time (apply 'encode-time 0 (cdr (decode-time)))
+                     display-time-interval 'display-time-event-handler))
   ;; When you get new mail, clear "Mail" from the mode line.
   (add-hook 'rmail-after-get-new-mail-hook 'display-time-event-handler))