Mercurial > emacs
changeset 16654:4f8b4e26cc92
(timer-next-integral-multiple-of-time): Doc fix.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 10 Dec 1996 07:24:21 +0000 |
parents | e45a0fc672a3 |
children | c7b0fffd4c2e |
files | lisp/timer.el |
diffstat | 1 files changed, 3 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/timer.el Tue Dec 10 07:19:54 1996 +0000 +++ b/lisp/timer.el Tue Dec 10 07:24:21 1996 +0000 @@ -71,8 +71,9 @@ 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.