# HG changeset patch # User Kim F. Storm # Date 1014941734 0 # Node ID b0f0d5c8cb4fcae076d7720b1e9051171a1ff781 # Parent 5f4fc7c4085c5893ab6066d186c209449b5c068a Describe non-blocking connect using open-network-stream. diff -r 5f4fc7c4085c -r b0f0d5c8cb4f etc/NEWS --- a/etc/NEWS Fri Mar 01 00:00:21 2002 +0000 +++ b/etc/NEWS Fri Mar 01 00:15:34 2002 +0000 @@ -623,6 +623,19 @@ change group you start for any given buffer should be the last one finished. +** You can now use non-blocking connect to open network streams. + +The function open-network-stream has a new optional 7th argument. +If non-nil, that function will initiate a non-blocking connect and +return immediately before the connection is established. + +It returns nil if the system does not support non-blocking connects; +the caller may then make a normal (blocking) open-network-stream. + +The filter and sentinel functions can now be specified as arguments +to open-network-stream. When the non-blocking connect completes, the +sentinel is called with the status matching "open" or "failed". + ** New function substring-no-properties. +++