diff lisp/timer.el @ 17457:e614abd1ff44

(timer-until): Fix syntax error.
author Karl Heuer <kwzh@gnu.org>
date Mon, 14 Apr 1997 19:22:51 +0000
parents 40ddfad0bbd5
children 95f0456681cc
line wrap: on
line diff
--- a/lisp/timer.el	Mon Apr 14 19:15:42 1997 +0000
+++ b/lisp/timer.el	Mon Apr 14 19:22:51 1997 +0000
@@ -254,7 +254,7 @@
 (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))))