(timer-next-integral-multiple-of-time): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Tue, 10 Dec 1996 07:24:21 +0000 (07:24 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 10 Dec 1996 07:24:21 +0000 (07:24 +0000)
lisp/timer.el

index 44e6e4c..1a34375 100644 (file)
@@ -71,8 +71,9 @@ fire each time Emacs is idle for that many seconds."
   timer)
 
 (defun timer-next-integral-multiple-of-time (time secs)
-  "Yield the next value after TIME that is an integral number of SECS
-since the epoch.  SECS may be a fraction."
+  "Yield the next value after TIME that is an integral multiple of SECS.
+More precisely, the next value, after TIME, that is an integral multiple
+of SECS seconds since the epoch.  SECS may be a fraction."
   (let ((time-base (ash 1 16)))
     (if (fboundp 'atan)
        ;; Use floating point, taking care to not lose precision.