]> git.eshelyaron.com Git - emacs.git/commitdiff
nnmh.el (nnmh-request-list-1): Work on MS Windows.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 30 Jun 2011 01:27:16 +0000 (01:27 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Thu, 30 Jun 2011 01:27:16 +0000 (01:27 +0000)
lisp/gnus/ChangeLog
lisp/gnus/nnmh.el

index 558aa4ad3d8aa27c26c270819b6bbfce29637e17..33fd124b1367c1f0d0a7f92ba5d2bdab03766bc2 100644 (file)
@@ -1,3 +1,7 @@
+2011-06-30  Katsumi Yamaoka  <yamaoka@jpl.org>
+
+       * nnmh.el (nnmh-request-list-1): Work on MS Windows.
+
 2011-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
 
        * message.el (message-point-in-header-p): Tweak the function to default
index 5fa1a89cf481ea725bf998421f559ef9896fcd6c..ec270eba2ce70a99c97633e70e407073123c42d6 100644 (file)
@@ -210,7 +210,9 @@ as unread by Gnus.")
        (max 0)
        min rdir num subdirectoriesp file)
     ;; Recurse down directories.
-    (setq subdirectoriesp (> (nth 1 (file-attributes dir)) 2))
+    (setq subdirectoriesp
+         ;; nth 1 of file-attributes always 1 on MS Windows :(
+         (/= (nth 1 (file-attributes (file-truename dir))) 2))
     (dolist (rdir files)
       (if (or (not subdirectoriesp)
              (file-regular-p rdir))