From: Karl Heuer Date: Wed, 17 Jul 1996 20:14:16 +0000 (+0000) Subject: (display-time): Starting time should be future, not past. X-Git-Tag: emacs-19.34~136 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c513a845e8387c6c2e1ecc34805fd6d80d4aef92;p=emacs.git (display-time): Starting time should be future, not past. --- diff --git a/lisp/time.el b/lisp/time.el index 08c2f86c82c..dfcace7c5d2 100644 --- a/lisp/time.el +++ b/lisp/time.el @@ -71,10 +71,9 @@ 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 - ;; 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)) + ;; Start timer at the beginning of the next minute. + (run-at-time (apply 'encode-time 60 (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))