summaryrefslogtreecommitdiff
path: root/lisp/time.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-16 22:40:50 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-16 22:40:50 +0000
commitd2b7637f7c52aa04be2120fe7b8c712af36d9526 (patch)
treead5b0603170f39d22590cb1c12fcaf0d6241974e /lisp/time.el
parent708362c17d7869478810b01a5bf84f118b96802b (diff)
downloademacs-d2b7637f7c52aa04be2120fe7b8c712af36d9526.tar.gz
(display-time-event-handler): Fix previous change.
Diffstat (limited to 'lisp/time.el')
-rw-r--r--lisp/time.el24
1 files changed, 14 insertions, 10 deletions
diff --git a/lisp/time.el b/lisp/time.el
index d400d75ff37..e04f49a236d 100644
--- a/lisp/time.el
+++ b/lisp/time.el
@@ -136,20 +136,24 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.")
;; Do redisplay right now, if no input pending.
(sit-for 0)
(let ((current (current-time))
- (timer display-time-timer))
- ;; If the next activation time is already in the past,
+ (timer display-time-timer)
+ ;; Compute the time when this timer will run again, next.
+ (next-time (timer-relative-time
+ (list (aref timer 1) (aref timer 2) (aref timer 3))
+ (* 5 (aref timer 4)) 0)))
+ ;; If the activation time is far in the past,
;; skip executions until we reach a time in the future.
;; This avoids a long pause if Emacs has been suspended for hours.
- (or (> (aref timer 1) (nth 0 current))
- (and (= (aref timer 1) (nth 0 current))
- (> (aref timer 2) (nth 1 current)))
- (and (= (aref timer 1) (nth 0 current))
- (= (aref timer 2) (nth 1 current))
- (> (aref timer 3) (nth 2 current)))
+ (or (> (nth 0 next-time) (nth 0 current))
+ (and (= (nth 0 next-time) (nth 0 current))
+ (> (nth 1 next-time) (nth 1 current)))
+ (and (= (nth 0 next-time) (nth 0 current))
+ (= (nth 1 next-time) (nth 1 current))
+ (> (nth 2 next-time) (nth 2 current)))
(progn
- (cancel-timer timer)
(timer-set-time timer (timer-next-integral-multiple-of-time
- current display-time-interval))
+ current display-time-interval)
+ display-time-interval)
(timer-activate timer)))))
;; Update the display-time info for the mode line