# HG changeset patch # User Lars Magne Ingebrigtsen # Date 1285944554 -7200 # Node ID 1d1ed3e3e171ed9e6b210f5dc08928fef574643d # Parent 88f8a448614e1d196e693d837f027debb9b46325 Use url-lazy-message for warnings about ignored cookies. These messages aren't very interesting for most users. diff -r 88f8a448614e -r 1d1ed3e3e171 lisp/url/ChangeLog --- a/lisp/url/ChangeLog Fri Oct 01 16:05:25 2010 +0200 +++ b/lisp/url/ChangeLog Fri Oct 01 16:49:14 2010 +0200 @@ -1,5 +1,8 @@ 2010-10-01 Lars Magne Ingebrigtsen + * url-cookie.el (url-cookie-handle-set-cookie): Use + url-lazy-message for the cookie warning, which isn't very interesting. + * url-http.el (url-http-async-sentinel): Check that the buffer is still alive before switching to it. diff -r 88f8a448614e -r 1d1ed3e3e171 lisp/url/url-cookie.el --- a/lisp/url/url-cookie.el Fri Oct 01 16:05:25 2010 +0200 +++ b/lisp/url/url-cookie.el Fri Oct 01 16:49:14 2010 +0200 @@ -400,8 +400,8 @@ (url-cookie-store (car cur) (cdr cur) expires domain localpart secure)))) (t - (message "%s tried to set a cookie for domain %s - rejected." - (url-host url-current-object) domain))))) + (url-lazy-message "%s tried to set a cookie for domain %s - rejected." + (url-host url-current-object) domain))))) (defvar url-cookie-timer nil)