diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-02-20 22:21:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-02-20 22:21:00 +0000 |
commit | 4e606fbad7a8b37305093d695d54c7f847de4454 (patch) | |
tree | 3619299a0578b1feac05d9ae146352df3262a305 /lisp | |
parent | d76c7a77e2ec67f869e0c7cce389bcc0a81bb1ad (diff) | |
download | emacs-4e606fbad7a8b37305093d695d54c7f847de4454.tar.gz |
(url-http-find-free-connection): braino.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/url/url-http.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el index 66fb0da42b9..22ca6010ef9 100644 --- a/lisp/url/url-http.el +++ b/lisp/url/url-http.el @@ -121,7 +121,7 @@ request.") (let ((buf (generate-new-buffer " *url-http-temp*"))) ;; `url-open-stream' needs a buffer in which to do things ;; like authentication. But we use another buffer afterwards. - (unwind-protect (url-open-stream host nil host port) + (unwind-protect (url-open-stream host buf host port) (kill-buffer buf))))))) ;; Building an HTTP request |