[gnus git] branch no-gnus updated: m0-1-62-g6c2f3bd =1= gnus-demon.el (gnus-demon-init): Don't multiply time twice.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 6c2f3bd4c1ddbe8a81982cf5c8186af587ba6aad (commit)
from 6bfa8135c0c34c187080add1f7f1e01fae2b4eed (commit)
- Log -----------------------------------------------------------------
commit 6c2f3bd4c1ddbe8a81982cf5c8186af587ba6aad
Author: Vida Gabor <[email protected]>
Date: Sun Feb 19 23:54:02 2012 +0000
gnus-demon.el (gnus-demon-init): Don't multiply time twice.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 4e21742..6d59d5d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-19 Vida Gábor <[email protected]> (tiny change)
+
+ * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
+ Reported by Peter Münster.
+
2012-02-18 Lars Ingebrigtsen <[email protected]>
* shr.el (shr-image-fetched): Make sure we really kill the right
diff --git a/lisp/gnus-demon.el b/lisp/gnus-demon.el
index c91c725..d0baf25 100644
--- a/lisp/gnus-demon.el
+++ b/lisp/gnus-demon.el
@@ -137,8 +137,7 @@ Emacs has been idle for IDLE `gnus-demon-timestep's."
;; (func nil number)
;; Only call when Emacs has been idle for `idle'
((and (null time) (numberp idle))
- (run-with-idle-timer (* idle gnus-demon-timestep) t
- 'gnus-demon-run-callback func))
+ (run-with-idle-timer idle t 'gnus-demon-run-callback func))
;; (func number any)
;; Call every `time'
((eq time-type 'integer)
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 5 +++++
lisp/gnus-demon.el | 3 +--
2 files changed, 6 insertions(+), 2 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, no-gnus has been updated
hooks/post-receive
--
Gnus Project