mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
* mail/rmailmm.el (rmail-mime-set-bulk-data): Silence --without-x compilation.
This commit is contained in:
parent
f0047cb9a5
commit
8a78544ece
2 changed files with 5 additions and 1 deletions
|
|
@ -1,5 +1,8 @@
|
|||
2013-09-18 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* mail/rmailmm.el (rmail-mime-set-bulk-data):
|
||||
Silence --without-x compilation.
|
||||
|
||||
* wdired.el (dired-backup-overwrite): Remove declaration.
|
||||
(wdired-mode-map): Add doc string.
|
||||
|
||||
|
|
|
|||
|
|
@ -685,7 +685,8 @@ directly."
|
|||
((string-match "image/\\(.*\\)" content-type)
|
||||
(setq type (image-type-from-file-name
|
||||
(concat "." (match-string 1 content-type))))
|
||||
(if (and (memq type image-types)
|
||||
(if (and (boundp 'image-types)
|
||||
(memq type image-types)
|
||||
(image-type-available-p type))
|
||||
(if (and rmail-mime-show-images
|
||||
(not (eq rmail-mime-show-images 'button))
|
||||
|
|
|
|||
Loading…
Reference in a new issue