diff options
| author | Katsumi Yamaoka | 2011-06-30 01:27:16 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2011-06-30 01:27:16 +0000 |
| commit | 732b9594ceab70733e55dba8dec85e7def3824b0 (patch) | |
| tree | b8e3f0675d98bbf69b4b87a5c4845cf8d24e22c9 | |
| parent | bb6177177ba48fc7f7e6cb54b8d2561694ab7859 (diff) | |
| download | emacs-732b9594ceab70733e55dba8dec85e7def3824b0.tar.gz emacs-732b9594ceab70733e55dba8dec85e7def3824b0.zip | |
nnmh.el (nnmh-request-list-1): Work on MS Windows.
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/nnmh.el | 4 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 558aa4ad3d8..33fd124b136 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-06-30 Katsumi Yamaoka <yamaoka@jpl.org> | ||
| 2 | |||
| 3 | * nnmh.el (nnmh-request-list-1): Work on MS Windows. | ||
| 4 | |||
| 1 | 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org> | 5 | 2011-06-30 Lars Magne Ingebrigtsen <larsi@gnus.org> |
| 2 | 6 | ||
| 3 | * message.el (message-point-in-header-p): Tweak the function to default | 7 | * message.el (message-point-in-header-p): Tweak the function to default |
diff --git a/lisp/gnus/nnmh.el b/lisp/gnus/nnmh.el index 5fa1a89cf48..ec270eba2ce 100644 --- a/lisp/gnus/nnmh.el +++ b/lisp/gnus/nnmh.el | |||
| @@ -210,7 +210,9 @@ as unread by Gnus.") | |||
| 210 | (max 0) | 210 | (max 0) |
| 211 | min rdir num subdirectoriesp file) | 211 | min rdir num subdirectoriesp file) |
| 212 | ;; Recurse down directories. | 212 | ;; Recurse down directories. |
| 213 | (setq subdirectoriesp (> (nth 1 (file-attributes dir)) 2)) | 213 | (setq subdirectoriesp |
| 214 | ;; nth 1 of file-attributes always 1 on MS Windows :( | ||
| 215 | (/= (nth 1 (file-attributes (file-truename dir))) 2)) | ||
| 214 | (dolist (rdir files) | 216 | (dolist (rdir files) |
| 215 | (if (or (not subdirectoriesp) | 217 | (if (or (not subdirectoriesp) |
| 216 | (file-regular-p rdir)) | 218 | (file-regular-p rdir)) |