Mercurial > emacs
comparison lisp/gnus/gnus-demon.el @ 111812:5e488dbb17f7
nnir.el: Rearrange code to allow macros to be autoloaded by gnus-sum.el.
(nnir-retrieve-headers-override-function): Make this variable customizable.
(nnir-retrieve-headers): Remove obsolete subject-mangling code.
gnus-sum.el (nnir-article-group,nnir-article-rsv): Autoload macros from nnir.el.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Fri, 03 Dec 2010 14:53:52 +0000 |
parents | ced73eea562f |
children | e567154bfaa7 c587007a09f2 |
comparison
equal
deleted
inserted
replaced
111811:ced73eea562f | 111812:5e488dbb17f7 |
---|---|
119 (idle (nth 2 handler)) | 119 (idle (nth 2 handler)) |
120 ;; Compute time according with timestep. | 120 ;; Compute time according with timestep. |
121 ;; If t, replace by 1 | 121 ;; If t, replace by 1 |
122 (time (cond ((eq time t) | 122 (time (cond ((eq time t) |
123 gnus-demon-timestep) | 123 gnus-demon-timestep) |
124 ((null time)) | 124 ((null time) nil) |
125 (t (* time gnus-demon-timestep)))) | 125 (t (* time gnus-demon-timestep)))) |
126 (timer | 126 (timer |
127 (cond | 127 (cond |
128 ;; (func number t) | 128 ;; (func number t) |
129 ;; Call when Emacs has been idle for `time' | 129 ;; Call when Emacs has been idle for `time' |