aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/url/ChangeLog5
-rw-r--r--lisp/url/url-cookie.el5
2 files changed, 7 insertions, 3 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index 3c7b8b6abe7..075d9fae3e0 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,8 @@
12011-04-01 Juanma Barranquero <lekktu@gmail.com>
2
3 * url-cookie.el (url-cookie-handle-set-cookie):
4 Use `dolist' rather than `mapcar'.
5
12011-02-12 Teodor Zlatanov <tzz@lifelogs.com> 62011-02-12 Teodor Zlatanov <tzz@lifelogs.com>
2 7
3 * url-parse.el (url-bit-for-url, url-user-for-url) 8 * url-parse.el (url-bit-for-url, url-user-for-url)
diff --git a/lisp/url/url-cookie.el b/lisp/url/url-cookie.el
index c55063dfba9..7fdd8b174c1 100644
--- a/lisp/url/url-cookie.el
+++ b/lisp/url/url-cookie.el
@@ -331,9 +331,8 @@ telling Microsoft that."
331 (not trusted) 331 (not trusted)
332 (save-window-excursion 332 (save-window-excursion
333 (with-output-to-temp-buffer "*Cookie Warning*" 333 (with-output-to-temp-buffer "*Cookie Warning*"
334 (mapcar 334 (dolist (x rest)
335 (lambda (x) 335 (princ (format "%s - %s" (car x) (cdr x)))))
336 (princ (format "%s - %s" (car x) (cdr x)))) rest))
337 (prog1 336 (prog1
338 (not (funcall url-confirmation-func 337 (not (funcall url-confirmation-func
339 (format "Allow %s to set these cookies? " 338 (format "Allow %s to set these cookies? "