diff lisp/timer.el @ 31290:a7c6f2d2f74f

(run-with-idle-timer): Undo last change, so that timer is not activated immediately if Emacs is already idle. Some existing code relies on this behaviour.
author Andrew Innes <andrewi@gnu.org>
date Wed, 30 Aug 2000 12:39:15 +0000
parents 9abea5a69fb5
children 253f761ad37b
line wrap: on
line diff
--- a/lisp/timer.el	Wed Aug 30 12:11:04 2000 +0000
+++ b/lisp/timer.el	Wed Aug 30 12:39:15 2000 +0000
@@ -387,7 +387,7 @@
   (let ((timer (timer-create)))
     (timer-set-function timer function args)
     (timer-set-idle-time timer secs repeat)
-    (timer-activate-when-idle timer t)
+    (timer-activate-when-idle timer)
     timer))
 
 (defun with-timeout-handler (tag)