diff options
| author | Magnus Henoch | 2006-10-29 21:00:50 +0000 |
|---|---|---|
| committer | Magnus Henoch | 2006-10-29 21:00:50 +0000 |
| commit | 080234b6930bbc83ffd60629a7da411881e156cc (patch) | |
| tree | 53a71c2504dafffc16813d2bdc82b3a99a67f0bc | |
| parent | 5d1b4ae30f287a5b6e9db59cbdd7ca5b00ed724a (diff) | |
| download | emacs-080234b6930bbc83ffd60629a7da411881e156cc.tar.gz emacs-080234b6930bbc83ffd60629a7da411881e156cc.zip | |
(url-open-stream): Really use asynchronous connections (accidentally
disabled during debugging).
| -rw-r--r-- | lisp/url/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/url/url-gw.el | 2 |
2 files changed, 6 insertions, 1 deletions
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 @@ | |||
| 1 | 2006-10-29 Magnus Henoch <mange@freemail.hu> | ||
| 2 | |||
| 3 | * url-gw.el (url-open-stream): Really use asynchronous | ||
| 4 | connections (accidentally disabled during debugging). | ||
| 5 | |||
| 1 | 2006-10-28 Magnus Henoch <mange@freemail.hu> | 6 | 2006-10-28 Magnus Henoch <mange@freemail.hu> |
| 2 | 7 | ||
| 3 | * url-http.el (url-http-parse-headers): Fix misplaced paren. | 8 | * 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." | |||
| 254 | (make-network-process :name name :buffer buffer | 254 | (make-network-process :name name :buffer buffer |
| 255 | :host host :service service | 255 | :host host :service service |
| 256 | :nowait | 256 | :nowait |
| 257 | (and nil (featurep 'make-network-process '(:nowait t))))) | 257 | (featurep 'make-network-process '(:nowait t)))) |
| 258 | (socks | 258 | (socks |
| 259 | (socks-open-network-stream name buffer host service)) | 259 | (socks-open-network-stream name buffer host service)) |
| 260 | (telnet | 260 | (telnet |