1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07: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))))