summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/timer.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2009-09-02 03:17:18 +0000
committerGlenn Morris <rgm@gnu.org>2009-09-02 03:17:18 +0000
commit5b66944704067d748de6734b6223389a433e3de8 (patch)
treece2b90a6fd63591c4becd65f75ec0303ef13ecbb /lisp/emacs-lisp/timer.el
parent5a021dd0620ee9ab54baa226af1cf652e429f3ec (diff)
downloademacs-5b66944704067d748de6734b6223389a433e3de8.tar.gz
Comment.
Diffstat (limited to 'lisp/emacs-lisp/timer.el')
-rw-r--r--lisp/emacs-lisp/timer.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/timer.el b/lisp/emacs-lisp/timer.el
index 0380d8553ba..bbb10797934 100644
--- a/lisp/emacs-lisp/timer.el
+++ b/lisp/emacs-lisp/timer.el
@@ -1,7 +1,7 @@
;;; timer.el --- run a function with args at some time in future
-;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005,
-;; 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
+;; Copyright (C) 1996, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
+;; 2009 Free Software Foundation, Inc.
;; Maintainer: FSF
@@ -284,7 +284,7 @@ how many will really happen.")
"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."
- ;; FIXME: (time-to-seconds (time-subtract (timer--time timer) time))
+ ;; FIXME: (float-time (time-subtract (timer--time timer) time))
(let ((high (- (car time) (timer--high-seconds timer)))
(low (- (nth 1 time) (timer--low-seconds timer))))
(+ low (* high 65536))))