aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/gnus/ChangeLog4
-rw-r--r--lisp/gnus/gnus-html.el4
2 files changed, 8 insertions, 0 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index a1c33b09815..8c7d93567e7 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,7 @@
12010-09-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
2
3 * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region.
4
12010-09-01 Stefan Monnier <monnier@iro.umontreal.ca> 52010-09-01 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 Fix up some byte-compiler warnings. 7 Fix up some byte-compiler warnings.
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el
index 8a7fae1fe9a..888b2988104 100644
--- a/lisp/gnus/gnus-html.el
+++ b/lisp/gnus/gnus-html.el
@@ -150,6 +150,10 @@
150 (gnus-overlay-put overlay 'gnus-button-url url) 150 (gnus-overlay-put overlay 'gnus-button-url url)
151 (when gnus-article-mouse-face 151 (when gnus-article-mouse-face
152 (gnus-overlay-put overlay 'mouse-face gnus-article-mouse-face))))) 152 (gnus-overlay-put overlay 'mouse-face gnus-article-mouse-face)))))
153 ;; The upper-case IMG_ALT is apparently just an artifact that
154 ;; should be deleted.
155 ((equal tag "IMG_ALT")
156 (delete-region start end))
153 ;; Whatever. Just ignore the tag. 157 ;; Whatever. Just ignore the tag.
154 (t 158 (t
155 )) 159 ))