diff options
| author | Glenn Morris | 2013-09-17 20:47:11 -0700 |
|---|---|---|
| committer | Glenn Morris | 2013-09-17 20:47:11 -0700 |
| commit | 8a78544ece0e8939032c0fc4302ec057dd021ea5 (patch) | |
| tree | 47658c20f89fb41b4117bbb3a5692956df27dd1e /lisp/mail | |
| parent | f0047cb9a54f555bf389ec7f763014b42e756f35 (diff) | |
| download | emacs-8a78544ece0e8939032c0fc4302ec057dd021ea5.tar.gz emacs-8a78544ece0e8939032c0fc4302ec057dd021ea5.zip | |
* mail/rmailmm.el (rmail-mime-set-bulk-data): Silence --without-x compilation.
Diffstat (limited to 'lisp/mail')
| -rw-r--r-- | lisp/mail/rmailmm.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mail/rmailmm.el b/lisp/mail/rmailmm.el index 350e3dacbcf..f2437b16d14 100644 --- a/lisp/mail/rmailmm.el +++ b/lisp/mail/rmailmm.el | |||
| @@ -685,7 +685,8 @@ directly." | |||
| 685 | ((string-match "image/\\(.*\\)" content-type) | 685 | ((string-match "image/\\(.*\\)" content-type) |
| 686 | (setq type (image-type-from-file-name | 686 | (setq type (image-type-from-file-name |
| 687 | (concat "." (match-string 1 content-type)))) | 687 | (concat "." (match-string 1 content-type)))) |
| 688 | (if (and (memq type image-types) | 688 | (if (and (boundp 'image-types) |
| 689 | (memq type image-types) | ||
| 689 | (image-type-available-p type)) | 690 | (image-type-available-p type)) |
| 690 | (if (and rmail-mime-show-images | 691 | (if (and rmail-mime-show-images |
| 691 | (not (eq rmail-mime-show-images 'button)) | 692 | (not (eq rmail-mime-show-images 'button)) |