From: Gnus developers Date: Sun, 10 Jun 2012 22:16:03 +0000 (+0000) Subject: Merge changes made in No Gnus X-Git-Tag: emacs-24.2~88 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b4543a2894f8d74cb01e4b353f8d6ebb5ae7bf3b;p=emacs.git Merge changes made in No Gnus 2012-06-10 Toke Hoiland-Jorgensen (tiny change) * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time' is an integer to avoid later problems. 2012-06-10 Lars Magne Ingebrigtsen * shr.el: Add a iso-8859-1 cookie to make stuff work under other locales. --- 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 @@ +2012-06-10 Toke Høiland-Jørgensen (tiny change) + + * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time' + is an integer to avoid later problems. + +2012-06-10 Lars Magne Ingebrigtsen + + * shr.el: Add a iso-8859-1 cookie to make stuff work under other + locales. + 2012-05-21 Katsumi Yamaoka * 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.") (if (eq time 'immediate) (setq time 0) (if (numberp time) - (setq time (* time 86400))))) + (setq time (round (* time 86400)))))) (when no-force (unless (integerp time) ;; handle 'never (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." (provide 'shr) +;; Local Variables: +;; coding: iso-8859-1 +;; End: + ;;; shr.el ends here