]> code.delx.au - gnu-emacs/commitdiff
(run-with-idle-timer): Pass t to timer-activate-when-idle, so timer
authorRichard M. Stallman <rms@gnu.org>
Sun, 20 Aug 2006 12:16:26 +0000 (12:16 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 20 Aug 2006 12:16:26 +0000 (12:16 +0000)
can run before Emacs becomes non-idle again.

lisp/emacs-lisp/timer.el

index a98dd60fc214e29d6a37d74150d906ba55805ba6..ed85bc765f7253d43552c8c0209464d86bc483f3 100644 (file)
@@ -413,6 +413,8 @@ This function is for compatibility; see also `run-with-timer'."
   "Perform an action the next time Emacs is idle for SECS seconds.
 The action is to call FUNCTION with arguments ARGS.
 SECS may be an integer or a floating point number.
+If Emacs is currently idle, and has been idle for N seconds (N < SECS),
+then it will call FUNCTION in SECS - N seconds from now.
 
 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).
@@ -425,7 +427,7 @@ This function returns a timer object which you can use in `cancel-timer'."
   (let ((timer (timer-create)))
     (timer-set-function timer function args)
     (timer-set-idle-time timer secs repeat)
-    (timer-activate-when-idle timer)
+    (timer-activate-when-idle timer t)
     timer))
 \f
 (defun with-timeout-handler (tag)