Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
732b9594
Commit
732b9594
authored
Jun 30, 2011
by
Katsumi Yamaoka
Browse files
nnmh.el (nnmh-request-list-1): Work on MS Windows.
parent
bb617717
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/nnmh.el
lisp/gnus/nnmh.el
+3
-1
No files found.
lisp/gnus/ChangeLog
View file @
732b9594
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
...
...
lisp/gnus/nnmh.el
View file @
732b9594
...
...
@@ -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
))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment