diff options
| author | Lars Magne Ingebrigtsen | 2010-09-01 23:40:39 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2010-09-01 23:40:39 +0000 |
| commit | fe01e1a3a0fc9f189a26ef8b0712672169d2e2bf (patch) | |
| tree | a3f6bb30e4d69f4fc126b8185d8fc82223e5c01d /lisp | |
| parent | 765abcce0abdce0177ecc3330199f5921eccc84c (diff) | |
| download | emacs-fe01e1a3a0fc9f189a26ef8b0712672169d2e2bf.tar.gz emacs-fe01e1a3a0fc9f189a26ef8b0712672169d2e2bf.zip | |
gnus-html.el: Delete the IMG_ALT region.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 4 | ||||
| -rw-r--r-- | lisp/gnus/gnus-html.el | 4 |
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 @@ | |||
| 1 | 2010-09-01 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-html.el (gnus-html-wash-tags): Delete the IMG_ALT region. | ||
| 4 | |||
| 1 | 2010-09-01 Stefan Monnier <monnier@iro.umontreal.ca> | 5 | 2010-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 | )) |