diff options
| -rw-r--r-- | lisp/time.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/time.el b/lisp/time.el index e04f49a236d..8f798fa08a2 100644 --- a/lisp/time.el +++ b/lisp/time.el | |||
| @@ -135,12 +135,12 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.") | |||
| 135 | (display-time-update) | 135 | (display-time-update) |
| 136 | ;; Do redisplay right now, if no input pending. | 136 | ;; Do redisplay right now, if no input pending. |
| 137 | (sit-for 0) | 137 | (sit-for 0) |
| 138 | (let ((current (current-time)) | 138 | (let* ((current (current-time)) |
| 139 | (timer display-time-timer) | 139 | (timer display-time-timer) |
| 140 | ;; Compute the time when this timer will run again, next. | 140 | ;; Compute the time when this timer will run again, next. |
| 141 | (next-time (timer-relative-time | 141 | (next-time (timer-relative-time |
| 142 | (list (aref timer 1) (aref timer 2) (aref timer 3)) | 142 | (list (aref timer 1) (aref timer 2) (aref timer 3)) |
| 143 | (* 5 (aref timer 4)) 0))) | 143 | (* 5 (aref timer 4)) 0))) |
| 144 | ;; If the activation time is far in the past, | 144 | ;; If the activation time is far in the past, |
| 145 | ;; skip executions until we reach a time in the future. | 145 | ;; skip executions until we reach a time in the future. |
| 146 | ;; This avoids a long pause if Emacs has been suspended for hours. | 146 | ;; This avoids a long pause if Emacs has been suspended for hours. |