aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2006-03-07 17:21:16 +0000
committerStefan Monnier2006-03-07 17:21:16 +0000
commitbedeb7fde3c406acb411e957cadde45b30821883 (patch)
tree1ad6745bdc2abca840ebbed663dbf981e97b06ba
parent46d91fa0dff86fe6212466b40c68a2a08a1523d2 (diff)
downloademacs-bedeb7fde3c406acb411e957cadde45b30821883.tar.gz
emacs-bedeb7fde3c406acb411e957cadde45b30821883.zip
(url-http-find-free-connection): Fix braino in last fix.
-rw-r--r--lisp/url/ChangeLog4
-rw-r--r--lisp/url/url-http.el3
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog
index b5bc07cb170..60a279356b8 100644
--- a/lisp/url/ChangeLog
+++ b/lisp/url/ChangeLog
@@ -1,3 +1,7 @@
12006-03-07 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * url-http.el (url-http-find-free-connection): Fix braino in last fix.
4
12006-03-05 Stefan Monnier <monnier@iro.umontreal.ca> 52006-03-05 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * url-http.el (url-http-find-free-connection): Don't kill the process 7 * url-http.el (url-http-find-free-connection): Don't kill the process
diff --git a/lisp/url/url-http.el b/lisp/url/url-http.el
index a4a01958b2d..c401094593e 100644
--- a/lisp/url/url-http.el
+++ b/lisp/url/url-http.el
@@ -124,7 +124,8 @@ request.")
124 (unwind-protect 124 (unwind-protect
125 (let ((proc (url-open-stream host buf host port))) 125 (let ((proc (url-open-stream host buf host port)))
126 ;; Drop the temp buffer link before killing the buffer. 126 ;; Drop the temp buffer link before killing the buffer.
127 (set-process-buffer proc nil)) 127 (set-process-buffer proc nil)
128 proc)
128 (kill-buffer buf))))))) 129 (kill-buffer buf)))))))
129 130
130;; Building an HTTP request 131;; Building an HTTP request