summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/NEWS5
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/NEWS b/etc/NEWS
index 56f3d8c7b23..f7601029f39 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -692,11 +692,14 @@ opening of stream and datagram connections to a server, as well as
create a stream or datagram server inside emacs.
- A server is started using :server t arg.
-- Datagram connection is selected using :datagram t arg.
+- Datagram connection is selected using :type 'datagram arg.
- A server can open on a random port using :service t arg.
- Local sockets are supported using :family 'local arg.
- Non-blocking connect is supported using :nowait t arg.
+To test for the availability of a given feature, use featurep like this:
+ (featurep 'make-network-process '(:type datagram))
+
*** Original open-network-stream is now emulated using make-network-process.
*** New function open-network-stream-nowait.