[gnus git] branch master updated: =1= * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via bb26f14c9008f19efbcf37e12044ec103d9fb144 (commit)
from 60075d32b69b416f6718eb01145fba6d3262ac37 (commit)
- Log -----------------------------------------------------------------
commit bb26f14c9008f19efbcf37e12044ec103d9fb144
Author: Adam Sjøgren <[email protected]>
Date: Sun Feb 13 11:22:56 2011 -0800
* gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d19efb0..dc45746 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
+2011-02-13 Adam Sjøgren <[email protected]>
+
+ * gnus-delay.el (gnus-delay-article) Fix number of seconds per day.
+
2011-02-13 Lars Ingebrigtsen <[email protected]>
* gnus-art.el (gnus-article-mode-line-format): Remove the article
diff --git a/lisp/gnus-delay.el b/lisp/gnus-delay.el
index a06a510..9b5a320 100644
--- a/lisp/gnus-delay.el
+++ b/lisp/gnus-delay.el
@@ -105,7 +105,7 @@ DELAY is a string, giving the length of the time. Possible values are:
(append deadline nil))))
;; If this time has passed already, add a day.
(when (< deadline (gnus-float-time))
- (setq deadline (+ 3600 deadline))) ;3600 secs/day
+ (setq deadline (+ 86400 deadline))) ; 86400 secs/day
;; Convert seconds to date header.
(setq deadline (message-make-date
(seconds-to-time deadline))))
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 4 ++++
lisp/gnus-delay.el | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project