+2010-12-08 Robert Pluim <rpluim@gmail.com>
+
+ * gnus-demon.el (gnus-demon-init): Call run-with-timer with an integer
+ parameter, since XEmacs doesn't accept t as a parameter.
+
2010-12-08 Andrew Cohen <cohen@andy.bu.edu>
* nnir.el (nnir-retrieve-headers): Use rassq when comparing article
;; (func number t)
;; Call when Emacs has been idle for `time'
((and (numberp time) (eq idle t))
- (run-with-timer t time 'gnus-demon-run-callback func time))
+ (run-with-timer time time 'gnus-demon-run-callback func time))
;; (func number number)
;; Call every `time' when Emacs has been idle for `idle'
((and (numberp time) (numberp idle))
- (run-with-timer t time 'gnus-demon-run-callback func idle))
+ (run-with-timer time time 'gnus-demon-run-callback func idle))
;; (func nil number)
;; Only call when Emacs has been idle for `idle'
((and (null time) (numberp idle))