]> git.eshelyaron.com Git - emacs.git/commitdiff
(timer-until): Fix syntax error.
authorKarl Heuer <kwzh@gnu.org>
Mon, 14 Apr 1997 19:22:51 +0000 (19:22 +0000)
committerKarl Heuer <kwzh@gnu.org>
Mon, 14 Apr 1997 19:22:51 +0000 (19:22 +0000)
lisp/timer.el

index 3b6382989cbaf1268820c1d64d2325f9f96d8346..c06c685ccf5bca52560f97b6a6598363cc6c7f3a 100644 (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))))