]> git.eshelyaron.com Git - emacs.git/commitdiff
(run-with-idle-timer): Doc fix.
authorRichard M. Stallman <rms@gnu.org>
Wed, 19 Jul 2000 22:04:34 +0000 (22:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 19 Jul 2000 22:04:34 +0000 (22:04 +0000)
lisp/timer.el

index f60763c2f68241ede18a01ffe0c3f393ef61206c..66b16b60fb18ca0f36e4b03a7673b1488e258336 100644 (file)
@@ -370,9 +370,11 @@ This function is for compatibility; see also `run-with-timer'."
 ;;;###autoload
 (defun run-with-idle-timer (secs repeat function &rest args)
   "Perform an action the next time Emacs is idle for SECS seconds.
-If REPEAT is non-nil, do this each time Emacs is idle for SECS seconds.
-SECS may be an integer or a floating point number.
 The action is to call FUNCTION with arguments ARGS.
+SECS may be an integer or a floating point number.
+
+If REPEAT is non-nil, do the action each time Emacs has been idle for
+exactly SECS seconds (that is, only once for each time Emacs becomes idle).
 
 This function returns a timer object which you can use in `cancel-timer'."
   (interactive