From bedeb7fde3c406acb411e957cadde45b30821883 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 7 Mar 2006 17:21:16 +0000 Subject: [PATCH] (url-http-find-free-connection): Fix braino in last fix. --- lisp/url/ChangeLog | 4 ++++ lisp/url/url-http.el | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) 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 -- 2.39.2