Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
6ce4202f
Commit
6ce4202f
authored
Dec 03, 2010
by
Julien Danjou
Committed by
Chong Yidong
Dec 03, 2010
Browse files
gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
parent
90365353
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/gnus-demon.el
lisp/gnus/gnus-demon.el
+1
-1
No files found.
lisp/gnus/ChangeLog
View file @
6ce4202f
2010-12-03 Julien Danjou <julien@danjou.info>
* gnus-demon.el (gnus-demon-init): Fix time computing when time is nil.
2010-12-03 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-util.el (gnus-macroexpand-all): Don't modify argument;
...
...
lisp/gnus/gnus-demon.el
View file @
6ce4202f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment