changeset 110172:f400055a098b

Fix previous merge from Gnus trunk.
author Katsumi Yamaoka <yamaoka@jpl.org>
date Sat, 04 Sep 2010 00:50:02 +0000
parents a05bc4ad2d3f
children f6c3d41e8113
files lisp/gnus/gnus-html.el
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/gnus-html.el	Sat Sep 04 00:45:13 2010 +0000
+++ b/lisp/gnus/gnus-html.el	Sat Sep 04 00:50:02 2010 +0000
@@ -111,7 +111,6 @@
 
 (defun gnus-html-wash-tags ()
   (let (tag parameters string start end images url)
-    (mm-url-decode-entities)
     (goto-char (point-min))
     (while (re-search-forward " *<pre_int> *</pre_int>\n" nil t)
       (replace-match "" t t))
@@ -223,7 +222,8 @@
     (while (re-search-forward "</pre_int>" nil t)
       (replace-match "" t t))
     (when images
-      (gnus-html-schedule-image-fetching (current-buffer) (nreverse images)))))
+      (gnus-html-schedule-image-fetching (current-buffer) (nreverse images)))
+    (mm-url-decode-entities)))
 
 (defun gnus-html-insert-image ()
   "Fetch and insert the image under point."