aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog10
-rw-r--r--lisp/gnus/nnmaildir.el2
-rw-r--r--lisp/gnus/shr.el4
3 files changed, 15 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 05eb0dd76c6..9c406f75bf3 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,13 @@
12012-06-10 Toke Høiland-Jørgensen <toke@toke.dk> (tiny change)
2
3 * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
4 is an integer to avoid later problems.
5
62012-06-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
7
8 * shr.el: Add a iso-8859-1 cookie to make stuff work under other
9 locales.
10
12012-05-21 Katsumi Yamaoka <yamaoka@jpl.org> 112012-05-21 Katsumi Yamaoka <yamaoka@jpl.org>
2 12
3 * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is 13 * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
diff --git a/lisp/gnus/nnmaildir.el b/lisp/gnus/nnmaildir.el
index bbace7c784a..7139a528e11 100644
--- a/lisp/gnus/nnmaildir.el
+++ b/lisp/gnus/nnmaildir.el
@@ -1461,7 +1461,7 @@ by nnmaildir-request-article.")
1461 (if (eq time 'immediate) 1461 (if (eq time 'immediate)
1462 (setq time 0) 1462 (setq time 0)
1463 (if (numberp time) 1463 (if (numberp time)
1464 (setq time (* time 86400))))) 1464 (setq time (round (* time 86400))))))
1465 (when no-force 1465 (when no-force
1466 (unless (integerp time) ;; handle 'never 1466 (unless (integerp time) ;; handle 'never
1467 (throw 'return (gnus-uncompress-range ranges))) 1467 (throw 'return (gnus-uncompress-range ranges)))
diff --git a/lisp/gnus/shr.el b/lisp/gnus/shr.el
index c2040a9b8cf..42118298734 100644
--- a/lisp/gnus/shr.el
+++ b/lisp/gnus/shr.el
@@ -1393,4 +1393,8 @@ ones, in case fg and bg are nil."
1393 1393
1394(provide 'shr) 1394(provide 'shr)
1395 1395
1396;; Local Variables:
1397;; coding: iso-8859-1
1398;; End:
1399
1396;;; shr.el ends here 1400;;; shr.el ends here