diff options
| author | Chong Yidong | 2010-03-21 11:28:53 -0400 |
|---|---|---|
| committer | Chong Yidong | 2010-03-21 11:28:53 -0400 |
| commit | f7704e26690c36f46568c14ca140b0bd771fd529 (patch) | |
| tree | 8a5960a1a84e3fe40160fa7148f07269a7e3d6c0 /doc | |
| parent | 901c830b936526a4f61cecf45c460e61cc084158 (diff) | |
| download | emacs-f7704e26690c36f46568c14ca140b0bd771fd529.tar.gz emacs-f7704e26690c36f46568c14ca140b0bd771fd529.zip | |
* processes.texi (Network Processes): Document seqpacket type.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/processes.texi | 3 |
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 @@ | |||
| 1 | 2010-03-21 Chong Yidong <cyd@stupidchicken.com> | ||
| 2 | |||
| 3 | * processes.texi (Network Processes): Document seqpacket type. | ||
| 4 | |||
| 1 | 2010-03-06 Chong Yidong <cyd@stupidchicken.com> | 5 | 2010-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} |
| 2060 | Specify the communication type. A value of @code{nil} specifies a | 2060 | Specify the communication type. A value of @code{nil} specifies a |
| 2061 | stream connection (the default); @code{datagram} specifies a datagram | 2061 | stream connection (the default); @code{datagram} specifies a datagram |
| 2062 | connection. Both connections and servers can be of either type. | 2062 | connection; @code{seqpacket} specifies a ``sequenced packet stream'' |
| 2063 | connection. Both connections and servers can be of these types. | ||
| 2063 | 2064 | ||
| 2064 | @item :server @var{server-flag} | 2065 | @item :server @var{server-flag} |
| 2065 | If @var{server-flag} is non-@code{nil}, create a server. Otherwise, | 2066 | If @var{server-flag} is non-@code{nil}, create a server. Otherwise, |