Mercurial > emacs
changeset 69328:7383e30e90bb
(url-http-find-free-connection): Fix braino in last fix.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 07 Mar 2006 17:21:16 +0000 |
parents | f309eed94981 |
children | 2c6e117ef341 |
files | lisp/url/ChangeLog lisp/url/url-http.el |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/url/ChangeLog Tue Mar 07 15:53:41 2006 +0000 +++ b/lisp/url/ChangeLog Tue Mar 07 17:21:16 2006 +0000 @@ -1,3 +1,7 @@ +2006-03-07 Stefan Monnier <monnier@iro.umontreal.ca> + + * url-http.el (url-http-find-free-connection): Fix braino in last fix. + 2006-03-05 Stefan Monnier <monnier@iro.umontreal.ca> * url-http.el (url-http-find-free-connection): Don't kill the process
--- a/lisp/url/url-http.el Tue Mar 07 15:53:41 2006 +0000 +++ b/lisp/url/url-http.el Tue Mar 07 17:21:16 2006 +0000 @@ -124,7 +124,8 @@ (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