Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d2b7637f
Commit
d2b7637f
authored
Dec 16, 1996
by
Richard M. Stallman
Browse files
(display-time-event-handler): Fix previous change.
parent
708362c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
10 deletions
+14
-10
lisp/time.el
lisp/time.el
+14
-10
No files found.
lisp/time.el
View file @
d2b7637f
...
@@ -136,20 +136,24 @@ would give mode line times like `94/12/30 21:07:48 (UTC)'.")
...
@@ -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.
;; Do redisplay right now, if no input pending.
(sit-for 0)
(sit-for 0)
(let ((current (current-time))
(let ((current (current-time))
(timer display-time-timer))
(timer display-time-timer)
;; If the next activation time is already in the past,
;; 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.
;; skip executions until we reach a time in the future.
;; This avoids a long pause if Emacs has been suspended for hours.
;; This avoids a long pause if Emacs has been suspended for hours.
(or (> (
aref
time
r 1
) (nth 0 current))
(or (> (
nth 0 next-
time) (nth 0 current))
(and (= (
aref
time
r 1
) (nth 0 current))
(and (= (
nth 0 next-
time) (nth 0 current))
(> (
aref
time
r 2
) (nth 1 current)))
(> (
nth 1 next-
time) (nth 1 current)))
(and (= (
aref
time
r 1
) (nth 0 current))
(and (= (
nth 0 next-
time) (nth 0 current))
(= (
aref
time
r 2
) (nth 1 current))
(= (
nth 1 next-
time) (nth 1 current))
(> (
aref
time
r 3
) (nth 2 current)))
(> (
nth 2 next-
time) (nth 2 current)))
(progn
(progn
(cancel-timer timer)
(timer-set-time timer (timer-next-integral-multiple-of-time
(timer-set-time timer (timer-next-integral-multiple-of-time
current display-time-interval))
current display-time-interval)
display-time-interval)
(timer-activate timer)))))
(timer-activate timer)))))
;; Update the display-time info for the mode line
;; Update the display-time info for the mode line
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment