gnus-html.el: Delete the IMG_ALT region.
authorLars Magne Ingebrigtsen <larsi@gnus.org>
Wed, 1 Sep 2010 23:40:39 +0000 (23:40 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 1 Sep 2010 23:40:39 +0000 (23:40 +0000)
lisp/gnus/ChangeLog
lisp/gnus/gnus-html.el

index a1c33b0..8c7d935 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  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        Fix up some byte-compiler warnings.
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
        ))