aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorChong Yidong2010-03-21 11:28:53 -0400
committerChong Yidong2010-03-21 11:28:53 -0400
commitf7704e26690c36f46568c14ca140b0bd771fd529 (patch)
tree8a5960a1a84e3fe40160fa7148f07269a7e3d6c0 /doc
parent901c830b936526a4f61cecf45c460e61cc084158 (diff)
downloademacs-f7704e26690c36f46568c14ca140b0bd771fd529.tar.gz
emacs-f7704e26690c36f46568c14ca140b0bd771fd529.zip
* 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 @@
12010-03-21 Chong Yidong <cyd@stupidchicken.com>
2
3 * processes.texi (Network Processes): Document seqpacket type.
4
12010-03-06 Chong Yidong <cyd@stupidchicken.com> 52010-03-06 Chong Yidong <cyd@stupidchicken.com>
2 6
3 * objects.texi (Integer Type): Take note of the read syntax 7 * 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.
2059@item :type @var{type} 2059@item :type @var{type}
2060Specify the communication type. A value of @code{nil} specifies a 2060Specify the communication type. A value of @code{nil} specifies a
2061stream connection (the default); @code{datagram} specifies a datagram 2061stream connection (the default); @code{datagram} specifies a datagram
2062connection. Both connections and servers can be of either type. 2062connection; @code{seqpacket} specifies a ``sequenced packet stream''
2063connection. Both connections and servers can be of these types.
2063 2064
2064@item :server @var{server-flag} 2065@item :server @var{server-flag}
2065If @var{server-flag} is non-@code{nil}, create a server. Otherwise, 2066If @var{server-flag} is non-@code{nil}, create a server. Otherwise,