1
0
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:
Karl Heuer 1997-04-14 19:22:51 +00:00
parent 1341d237b4
commit 0a1a8ee95b

View File

@ -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))))