summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChong Yidong <cyd@stupidchicken.com>2010-03-21 11:28:53 -0400
committerChong Yidong <cyd@stupidchicken.com>2010-03-21 11:28:53 -0400
commitf7704e26690c36f46568c14ca140b0bd771fd529 (patch)
tree8a5960a1a84e3fe40160fa7148f07269a7e3d6c0 /doc
parent901c830b936526a4f61cecf45c460e61cc084158 (diff)
downloademacs-f7704e26690c36f46568c14ca140b0bd771fd529.tar.gz
* processes.texi (Network Processes): Document seqpacket type.
Diffstat (limited to 'doc')
-rw-r--r--doc/lispref/ChangeLog4
-rw-r--r--doc/lispref/processes.texi3
2 files changed, 6 insertions, 1 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog
index 1b9e028e598..64b4b148797 100644
--- a/doc/lispref/ChangeLog
+++ b/doc/lispref/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-21 Chong Yidong <cyd@stupidchicken.com>
+
+ * processes.texi (Network Processes): Document seqpacket type.
+
2010-03-06 Chong Yidong <cyd@stupidchicken.com>
* objects.texi (Integer Type): Take note of the read syntax
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi
index 0dc3946f7e0..85628bdfac6 100644
--- a/doc/lispref/processes.texi
+++ b/doc/lispref/processes.texi
@@ -2059,7 +2059,8 @@ necessary to make it unique.
@item :type @var{type}
Specify the communication type. A value of @code{nil} specifies a
stream connection (the default); @code{datagram} specifies a datagram
-connection. Both connections and servers can be of either type.
+connection; @code{seqpacket} specifies a ``sequenced packet stream''
+connection. Both connections and servers can be of these types.
@item :server @var{server-flag}
If @var{server-flag} is non-@code{nil}, create a server. Otherwise,