# HG changeset patch # User Katsumi Yamaoka # Date 1283384439 0 # Node ID 1e526716f8fc86e84ed803d9c7f02785ed85498d # Parent a718416592e8fb898c87625bb00be28038f8cfdd gnus-html.el: Delete the IMG_ALT region. diff -r a718416592e8 -r 1e526716f8fc lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Wed Sep 01 17:42:37 2010 +0200 +++ b/lisp/gnus/ChangeLog Wed Sep 01 23:40:39 2010 +0000 @@ -1,3 +1,7 @@ +2010-09-01 Lars Magne Ingebrigtsen + + * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region. + 2010-09-01 Stefan Monnier Fix up some byte-compiler warnings. diff -r a718416592e8 -r 1e526716f8fc lisp/gnus/gnus-html.el --- a/lisp/gnus/gnus-html.el Wed Sep 01 17:42:37 2010 +0200 +++ b/lisp/gnus/gnus-html.el Wed Sep 01 23:40:39 2010 +0000 @@ -150,6 +150,10 @@ (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 ))