diff options
| -rw-r--r-- | lisp/gnus/gnus-art.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-art.el b/lisp/gnus/gnus-art.el index b1e23a47ffb..74915a8cda9 100644 --- a/lisp/gnus/gnus-art.el +++ b/lisp/gnus/gnus-art.el | |||
| @@ -2217,7 +2217,9 @@ This only works if the article in question is HTML." | |||
| 2217 | (save-restriction | 2217 | (save-restriction |
| 2218 | (widen) | 2218 | (widen) |
| 2219 | (if (eq mm-text-html-renderer 'w3m) | 2219 | (if (eq mm-text-html-renderer 'w3m) |
| 2220 | (w3m-toggle-inline-images) | 2220 | (progn |
| 2221 | (require 'w3m) | ||
| 2222 | (w3m-toggle-inline-images)) | ||
| 2221 | (dolist (region (gnus-find-text-property-region (point-min) (point-max) | 2223 | (dolist (region (gnus-find-text-property-region (point-min) (point-max) |
| 2222 | 'image-displayer)) | 2224 | 'image-displayer)) |
| 2223 | (cl-destructuring-bind (start end function) region | 2225 | (cl-destructuring-bind (start end function) region |