From: Stefan Monnier Date: Tue, 7 Mar 2006 17:21:16 +0000 (+0000) Subject: (url-http-find-free-connection): Fix braino in last fix. X-Git-Tag: emacs-pretest-22.0.90~3746 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bedeb7fde3c406acb411e957cadde45b30821883;p=emacs.git (url-http-find-free-connection): Fix braino in last fix. --- 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 @@ +2006-03-07 Stefan Monnier + + * url-http.el (url-http-find-free-connection): Fix braino in last fix. + 2006-03-05 Stefan Monnier * 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.") (unwind-protect (let ((proc (url-open-stream host buf host port))) ;; Drop the temp buffer link before killing the buffer. - (set-process-buffer proc nil)) + (set-process-buffer proc nil) + proc) (kill-buffer buf))))))) ;; Building an HTTP request