From 080234b6930bbc83ffd60629a7da411881e156cc Mon Sep 17 00:00:00 2001 From: Magnus Henoch Date: Sun, 29 Oct 2006 21:00:50 +0000 Subject: [PATCH] (url-open-stream): Really use asynchronous connections (accidentally disabled during debugging). --- lisp/url/ChangeLog | 5 +++++ lisp/url/url-gw.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/url/ChangeLog b/lisp/url/ChangeLog index d0df620c870..e63759f216a 100644 --- a/lisp/url/ChangeLog +++ b/lisp/url/ChangeLog @@ -1,3 +1,8 @@ +2006-10-29 Magnus Henoch + + * url-gw.el (url-open-stream): Really use asynchronous + connections (accidentally disabled during debugging). + 2006-10-28 Magnus Henoch * url-http.el (url-http-parse-headers): Fix misplaced paren. diff --git a/lisp/url/url-gw.el b/lisp/url/url-gw.el index 31e1a629aba..5197d894aa2 100644 --- a/lisp/url/url-gw.el +++ b/lisp/url/url-gw.el @@ -254,7 +254,7 @@ Might do a non-blocking connection; use `process-status' to check." (make-network-process :name name :buffer buffer :host host :service service :nowait - (and nil (featurep 'make-network-process '(:nowait t))))) + (featurep 'make-network-process '(:nowait t)))) (socks (socks-open-network-stream name buffer host service)) (telnet -- 2.11.4.GIT