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
ebada6e0
Commit
ebada6e0
authored
Jun 06, 2013
by
Ted Zlatanov
Committed by
Katsumi Yamaoka
Jun 06, 2013
Browse files
gnus-ems.el (gnus-image-type-available-p): Test `display-images-p' before `image-type-available-p'
parent
d0341459
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+6
-0
lisp/gnus/gnus-ems.el
lisp/gnus/gnus-ems.el
+2
-2
No files found.
lisp/gnus/ChangeLog
View file @
ebada6e0
2013-06-06 Teodor Zlatanov <tzz@lifelogs.com>
* gnus-ems.el (gnus-image-type-available-p): Test `display-images-p'
before `image-type-available-p' to avoid loading the image libraries
needlessly.
2013-06-04 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-art.el (article-date-ut, article-update-date-lapsed): Don't
...
...
lisp/gnus/gnus-ems.el
View file @
ebada6e0
...
...
@@ -165,10 +165,10 @@
(
defun
gnus-image-type-available-p
(
type
)
(
and
(
fboundp
'image-type-available-p
)
(
image-type-available-p
type
)
(
if
(
fboundp
'display-images-p
)
(
display-images-p
)
t
)))
t
)
(
image-type-available-p
type
)))
(
defun
gnus-create-image
(
file
&optional
type
data-p
&rest
props
)
(
let
((
face
(
plist-get
props
:face
)))
...
...
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