summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-12-10 07:24:21 +0000
committerRichard M. Stallman <rms@gnu.org>1996-12-10 07:24:21 +0000
commit466f392fa5369c0f8e7cca4da99eeaca880115db (patch)
tree5bf103626bb8db836fcdc75afb230f06078d3fab
parent838ab248a48177023260155c9acec35ce8e01453 (diff)
downloademacs-466f392fa5369c0f8e7cca4da99eeaca880115db.tar.gz
(timer-next-integral-multiple-of-time): Doc fix.
-rw-r--r--lisp/timer.el5
1 files changed, 3 insertions, 2 deletions
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.