aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2010-09-02 01:06:36 +0000
committerKatsumi Yamaoka2010-09-02 01:06:36 +0000
commit5b77fa4d8292b172df7619b4009fbac2311b1bfd (patch)
treeba0bdbb5db3362c024a6e41f6434bfefce8bfa4a
parentc6c815761c687a1401afe6e9f25fc9e44f601345 (diff)
downloademacs-5b77fa4d8292b172df7619b4009fbac2311b1bfd.tar.gz
emacs-5b77fa4d8292b172df7619b4009fbac2311b1bfd.zip
gnus-html.el (gnus-html-image-url-blocked-p): Say in the message what the regexp really is.
-rw-r--r--lisp/gnus/gnus-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/gnus/gnus-html.el b/lisp/gnus/gnus-html.el
index a78c617184d..5882645425e 100644
--- a/lisp/gnus/gnus-html.el
+++ b/lisp/gnus/gnus-html.el
@@ -290,7 +290,7 @@ fit these criteria."
290 (let ((ret (and blocked-images 290 (let ((ret (and blocked-images
291 (string-match blocked-images url)))) 291 (string-match blocked-images url))))
292 (when ret 292 (when ret
293 (gnus-message 8 "Image URL %s is blocked by gnus-blocked-images regex %s" url gnus-blocked-images)) 293 (gnus-message 8 "Image URL %s is blocked by gnus-blocked-images regex %s" url blocked-images))
294 ret)) 294 ret))
295 295
296;;;###autoload 296;;;###autoload