mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-25 10:47:00 +00:00
gnus-html.el (gnus-html-wash-tags): Check the value ofgnus-blocked-images in the summary buffer.
This commit is contained in:
parent
9a047bac91
commit
9a4b54dbe6
@ -1,3 +1,8 @@
|
||||
2010-09-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* gnus-html.el (gnus-html-wash-tags): Check the value of
|
||||
gnus-blocked-images in the summary buffer.
|
||||
|
||||
2010-09-01 Teodor Zlatanov <tzz@lifelogs.com>
|
||||
|
||||
* gnus-html.el (gnus-html-image-url-blocked-p): Doc fix.
|
||||
|
@ -136,7 +136,12 @@ fit these criteria."
|
||||
(delete-region start end)
|
||||
(gnus-put-image image (gnus-string-or string "*")))))
|
||||
;; Normal, external URL.
|
||||
(unless (gnus-html-image-url-blocked-p url gnus-blocked-images)
|
||||
(unless (gnus-html-image-url-blocked-p
|
||||
url
|
||||
(if (buffer-live-p gnus-summary-buffer)
|
||||
(with-current-buffer gnus-summary-buffer
|
||||
gnus-blocked-images)
|
||||
gnus-blocked-images))
|
||||
(let ((file (gnus-html-image-id url)))
|
||||
(if (file-exists-p file)
|
||||
;; It's already cached, so just insert it.
|
||||
|
Loading…
Reference in New Issue
Block a user