From 0a1a8ee95bedd56b4d4696c042adb42e1da48297 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Mon, 14 Apr 1997 19:22:51 +0000 Subject: [PATCH] (timer-until): Fix syntax error. --- lisp/timer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 2.39.5