diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-04-14 19:22:51 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-04-14 19:22:51 +0000 |
commit | 0a1a8ee95bedd56b4d4696c042adb42e1da48297 (patch) | |
tree | b81f75c44e3995808dfa79d890e27c2555b186bb /lisp/timer.el | |
parent | 1341d237b4062e1c4b3c0ce76691f8ce35beaad4 (diff) | |
download | emacs-0a1a8ee95bedd56b4d4696c042adb42e1da48297.tar.gz |
(timer-until): Fix syntax error.
Diffstat (limited to 'lisp/timer.el')
-rw-r--r-- | lisp/timer.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |