diff options
author | Julien Danjou <julien@danjou.info> | 2010-12-03 17:05:02 -0500 |
---|---|---|
committer | Chong Yidong <cyd@stupidchicken.com> | 2010-12-03 17:05:02 -0500 |
commit | 6ce4202f43d64c9c021b599f204d30c484586372 (patch) | |
tree | 7873fdeafa250c4bcd56d6c26e3387b335401639 /lisp/gnus/gnus-demon.el | |
parent | 903653532fd8935d4f07627890b9502618d5a432 (diff) | |
download | emacs-6ce4202f43d64c9c021b599f204d30c484586372.tar.gz emacs-6ce4202f43d64c9c021b599f204d30c484586372.tar.bz2 emacs-6ce4202f43d64c9c021b599f204d30c484586372.zip |
gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
Diffstat (limited to 'lisp/gnus/gnus-demon.el')
-rw-r--r-- | lisp/gnus/gnus-demon.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-demon.el b/lisp/gnus/gnus-demon.el index 94a49525847..b33a673c354 100644 --- a/lisp/gnus/gnus-demon.el +++ b/lisp/gnus/gnus-demon.el @@ -121,7 +121,7 @@ Emacs has been idle for IDLE `gnus-demon-timestep's." ;; If t, replace by 1 (time (cond ((eq time t) gnus-demon-timestep) - ((null time)) + ((null time) nil) (t (* time gnus-demon-timestep)))) (timer (cond |