Mercurial > emacs
changeset 72450:466083d03cb4
(run-with-idle-timer): Pass t to timer-activate-when-idle, so timer
can run before Emacs becomes non-idle again.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 20 Aug 2006 12:16:26 +0000 |
parents | 24e687976d39 |
children | 66b140055b7d |
files | lisp/emacs-lisp/timer.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/timer.el Sun Aug 20 12:11:24 2006 +0000 +++ b/lisp/emacs-lisp/timer.el Sun Aug 20 12:16:26 2006 +0000 @@ -413,6 +413,8 @@ "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 @@ (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)) (defun with-timeout-handler (tag)