From: Richard M. Stallman Date: Tue, 10 Dec 1996 07:24:21 +0000 (+0000) Subject: (timer-next-integral-multiple-of-time): Doc fix. X-Git-Tag: emacs-20.1~3290 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=59b1de826d4fde74e91d073c7a22ccfe7b1668bb;p=emacs.git (timer-next-integral-multiple-of-time): Doc fix. --- diff --git a/lisp/timer.el b/lisp/timer.el index 44e6e4ccd53..1a343755661 100644 --- a/lisp/timer.el +++ b/lisp/timer.el @@ -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.