aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-demon.el3
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index d2f2b1b4660..e7473c463a9 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12012-02-19 Vida Gábor <vidagabor@gmail.com> (tiny change)
2
3 * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
4 Reported by Peter Münster.
5
12012-02-18 Lars Ingebrigtsen <larsi@gnus.org> 62012-02-18 Lars Ingebrigtsen <larsi@gnus.org>
2 7
3 * shr.el (shr-image-fetched): Make sure we really kill the right 8 * shr.el (shr-image-fetched): Make sure we really kill the right
diff --git a/lisp/gnus/gnus-demon.el b/lisp/gnus/gnus-demon.el
index c91c725658a..d0baf25d5d9 100644
--- a/lisp/gnus/gnus-demon.el
+++ b/lisp/gnus/gnus-demon.el
@@ -137,8 +137,7 @@ Emacs has been idle for IDLE `gnus-demon-timestep's."
137 ;; (func nil number) 137 ;; (func nil number)
138 ;; Only call when Emacs has been idle for `idle' 138 ;; Only call when Emacs has been idle for `idle'
139 ((and (null time) (numberp idle)) 139 ((and (null time) (numberp idle))
140 (run-with-idle-timer (* idle gnus-demon-timestep) t 140 (run-with-idle-timer idle t 'gnus-demon-run-callback func))
141 'gnus-demon-run-callback func))
142 ;; (func number any) 141 ;; (func number any)
143 ;; Call every `time' 142 ;; Call every `time'
144 ((eq time-type 'integer) 143 ((eq time-type 'integer)