]> git.eshelyaron.com Git - emacs.git/commitdiff
Merge changes made in No Gnus
authorGnus developers <ding@gnus.org>
Sun, 10 Jun 2012 22:16:03 +0000 (22:16 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 10 Jun 2012 22:16:03 +0000 (22:16 +0000)
2012-06-10  Toke Hoiland-Jorgensen <toke@toke.dk> (tiny change)
* nnmaildir.el (nnmaildir-request-expire-articles):
  Ensure that `time' is an integer to avoid later problems.
2012-06-10  Lars Magne Ingebrigtsen <larsi@gnus.org>
* shr.el: Add a iso-8859-1 cookie to make stuff work under other
 locales.

lisp/gnus/ChangeLog
lisp/gnus/nnmaildir.el
lisp/gnus/shr.el

index 05eb0dd76c61716b5657f5fd358da7c5b9b7dc7c..9c406f75bf3d9fd6dbbcd6dd80785b0de68f4fc8 100644 (file)
@@ -1,3 +1,13 @@
+2012-06-10  Toke Høiland-Jørgensen  <toke@toke.dk>  (tiny change)
+
+       * nnmaildir.el (nnmaildir-request-expire-articles): Ensure that `time'
+       is an integer to avoid later problems.
+
+2012-06-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * shr.el: Add a iso-8859-1 cookie to make stuff work under other
+       locales.
+
 2012-05-21  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-msg.el (gnus-msg-mail): Ensure that gnus-newsgroup-name is
index bbace7c784a4366d20e079e53104939f8539182c..7139a528e11f97e69213acf34d79b986e076d53f 100644 (file)
@@ -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)))
index c2040a9b8cffef94b8418f9496b85ec9c3e3d298..4211829873407cd5a8e4cc5c9464b4e32be48036 100644 (file)
@@ -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