mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
(timer-until): Fix syntax error.
This commit is contained in:
parent
1341d237b4
commit
0a1a8ee95b
@ -254,7 +254,7 @@ fire repeatedly that many seconds apart."
|
||||
(defun timer-until (timer time)
|
||||
"Calculate number of seconds from when TIMER will run, until TIME.
|
||||
TIMER is a timer, and stands for the time when its next repeat is scheduled.
|
||||
TIME is a time-list.
|
||||
TIME is a time-list."
|
||||
(let ((high (- (car time) (aref timer 1)))
|
||||
(low (- (nth 1 time) (aref timer 2))))
|
||||
(+ low (* high 65536))))
|
||||
|
Loading…
Reference in New Issue
Block a user