Mercurial > emacs
changeset 43602:b0f0d5c8cb4f
Describe non-blocking connect using open-network-stream.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 01 Mar 2002 00:15:34 +0000 |
parents | 5f4fc7c4085c |
children | 01a43d026daa |
files | etc/NEWS |
diffstat | 1 files changed, 13 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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. +++