From: Lars Magne Ingebrigtsen Date: Sun, 19 Sep 2010 12:20:07 +0000 (+0200) Subject: Fix up the url-retrieve calling conventions so that prefetch doesn't bug out. X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=46ee1f25a547d6fa03786b8777309de73d1b42dc Fix up the url-retrieve calling conventions so that prefetch doesn't bug out. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index cf1396279..05edd0bc1 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-09-19 Lars Magne Ingebrigtsen + + * gnus-html.el (gnus-html-prefetch-images): Fix up the url-retrieve + calling conventions so that prefetch doesn't bug out. + 2010-09-19 Julien Danjou * gnus-html.el (gnus-html-prefetch-images): Use `url-retrieve' rather diff --git a/lisp/gnus-html.el b/lisp/gnus-html.el index f921b7b90..7ac3dd44b 100644 --- a/lisp/gnus-html.el +++ b/lisp/gnus-html.el @@ -480,7 +480,8 @@ This only works if the article in question is HTML." (unless (file-exists-p (gnus-html-image-id url)) (ignore-errors (url-retrieve (mm-url-decode-entities-string url) - 'gnus-html-image-fetched)))))))))) + 'gnus-html-image-fetched + (list nil (list url)))))))))))) (provide 'gnus-html)