diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/mm-decode.el | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 00b5417fa37..ee7442c55e1 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2011-12-15 Juri Linkov <juri@jurta.org> | ||
| 2 | |||
| 3 | * mm-decode.el (mm-inline-media-tests): Add missing `mm-handle-media-subtype'. | ||
| 4 | |||
| 1 | 2011-12-09 Tassilo Horn <tassilo@member.fsf.org> | 5 | 2011-12-09 Tassilo Horn <tassilo@member.fsf.org> |
| 2 | 6 | ||
| 3 | * message.el (message-valid-fqdn-regexp): Update with newly approved | 7 | * message.el (message-valid-fqdn-regexp): Update with newly approved |
diff --git a/lisp/gnus/mm-decode.el b/lisp/gnus/mm-decode.el index 44e2af5b904..7ea0902bdb5 100644 --- a/lisp/gnus/mm-decode.el +++ b/lisp/gnus/mm-decode.el | |||
| @@ -275,7 +275,7 @@ before the external MIME handler is invoked." | |||
| 275 | (ignore-errors | 275 | (ignore-errors |
| 276 | (if (fboundp 'create-image) | 276 | (if (fboundp 'create-image) |
| 277 | (create-image (buffer-string) 'imagemagick 'data-p) | 277 | (create-image (buffer-string) 'imagemagick 'data-p) |
| 278 | (mm-create-image-xemacs type))))) | 278 | (mm-create-image-xemacs (mm-handle-media-subtype handle)))))) |
| 279 | (when image | 279 | (when image |
| 280 | (setcar (cdr handle) (list "image/imagemagick")) | 280 | (setcar (cdr handle) (list "image/imagemagick")) |
| 281 | (mm-image-fit-p handle))))))) | 281 | (mm-image-fit-p handle))))))) |