]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix previous merge from Gnus trunk.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 4 Sep 2010 00:50:02 +0000 (00:50 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sat, 4 Sep 2010 00:50:02 +0000 (00:50 +0000)
lisp/gnus/gnus-html.el

index 1e6cdc5c9b7926280938a60b642f067413979d14..e14d109d6ed35147041aef4f79e32bc7864ea35d 100644 (file)
@@ -111,7 +111,6 @@ fit these criteria."
 
 (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 @@ fit these criteria."
     (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."