emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r107339: gnus-demon.el (gnus-demon-in


From: Katsumi Yamaoka
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r107339: gnus-demon.el (gnus-demon-init): Don't multiply time twice.
Date: Sun, 19 Feb 2012 23:55:16 +0000
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 107339
author: Vida Gabor <address@hidden>
committer: Katsumi Yamaoka <address@hidden>
branch nick: trunk
timestamp: Sun 2012-02-19 23:55:16 +0000
message:
  gnus-demon.el (gnus-demon-init): Don't multiply time twice.
modified:
  lisp/gnus/ChangeLog
  lisp/gnus/gnus-demon.el
=== modified file 'lisp/gnus/ChangeLog'
--- a/lisp/gnus/ChangeLog       2012-02-18 22:28:00 +0000
+++ b/lisp/gnus/ChangeLog       2012-02-19 23:55:16 +0000
@@ -1,3 +1,8 @@
+2012-02-19  Vida Gábor  <address@hidden>  (tiny change)
+
+       * gnus-demon.el (gnus-demon-init): Don't multiply time twice.
+       Reported by Peter Münster.
+
 2012-02-18  Lars Ingebrigtsen  <address@hidden>
 
        * shr.el (shr-image-fetched): Make sure we really kill the right

=== modified file 'lisp/gnus/gnus-demon.el'
--- a/lisp/gnus/gnus-demon.el   2012-01-28 02:25:57 +0000
+++ b/lisp/gnus/gnus-demon.el   2012-02-19 23:55:16 +0000
@@ -137,8 +137,7 @@
              ;; (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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]