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
68d9bf4b
Commit
68d9bf4b
authored
Oct 13, 2010
by
Katsumi Yamaoka
Browse files
gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
parent
35744400
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+2
-0
lisp/gnus/gnus-dired.el
lisp/gnus/gnus-dired.el
+3
-1
No files found.
lisp/gnus/ChangeLog
View file @
68d9bf4b
2010-10-13 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-dired.el (gnus-dired-attach): Silence XEmacs 21.5 when compiling.
* gnus-gravatar.el (gnus-gravatar-transform-address): Adjust avatars'
position when (X-)Faces exist.
(gnus-treat-from-gravatar, gnus-treat-mail-gravatar): Force displaying
...
...
lisp/gnus/gnus-dired.el
View file @
68d9bf4b
...
...
@@ -133,7 +133,9 @@ filenames."
(
mapcar
;; don't attach directories
(
lambda
(
f
)
(
if
(
file-directory-p
f
)
nil
f
))
(
nreverse
(
dired-map-over-marks
(
dired-get-filename
)
nil
))))))
(
nreverse
(
let
((
arg
nil
))
;; Silence XEmacs 21.5 when compiling.
(
dired-map-over-marks
(
dired-get-filename
)
arg
)))))))
(
let
((
destination
nil
)
(
files-str
nil
)
(
bufs
nil
))
...
...
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