From: Karl Heuer Date: Mon, 14 Apr 1997 19:22:51 +0000 (+0000) Subject: (timer-until): Fix syntax error. X-Git-Tag: emacs-20.1~2488 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0a1a8ee95bedd56b4d4696c042adb42e1da48297;p=emacs.git (timer-until): Fix syntax error. --- diff --git a/lisp/timer.el b/lisp/timer.el index 3b6382989cb..c06c685ccf5 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -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))))