changeset 17457:e614abd1ff44

(timer-until): Fix syntax error.
author Karl Heuer <kwzh@gnu.org>
date Mon, 14 Apr 1997 19:22:51 +0000
parents b386f1a9ed75
children eeff371bfe78
files lisp/timer.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
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))))