Delete the IMG_ALT region.
authorLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 1 Sep 2010 14:22:45 +0000 (16:22 +0200)
committerLars Magne Ingebrigtsen <larsi@quimbies.gnus.org>
Wed, 1 Sep 2010 14:22:45 +0000 (16:22 +0200)
lisp/ChangeLog
lisp/gnus-html.el

index 8a70865..456781f 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region. 
+
 2010-09-01  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * gnus-html.el (gnus-article-html): Decode contents by charset.
index 8a7fae1..888b298 100644 (file)
            (gnus-overlay-put overlay 'gnus-button-url url)
            (when gnus-article-mouse-face
              (gnus-overlay-put overlay 'mouse-face gnus-article-mouse-face)))))
+       ;; The upper-case IMG_ALT is apparently just an artifact that
+       ;; should be deleted.
+       ((equal tag "IMG_ALT")
+       (delete-region start end))
        ;; Whatever.  Just ignore the tag.
        (t
        ))