diff options
| author | Richard M. Stallman | 2004-03-04 17:10:27 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-03-04 17:10:27 +0000 |
| commit | 38e82e480ee26600bdbb2a10463e47bfa039cf0d (patch) | |
| tree | 90f52efd1b7bbec639a33c234b206023b03d79cd | |
| parent | a2fdaa28bab237e34682a56e3c58571088eb662b (diff) | |
| download | emacs-38e82e480ee26600bdbb2a10463e47bfa039cf0d.tar.gz emacs-38e82e480ee26600bdbb2a10463e47bfa039cf0d.zip | |
Fix typos.
| -rw-r--r-- | lispref/processes.texi | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/lispref/processes.texi b/lispref/processes.texi index c76261908d7..7a7c19eef9f 100644 --- a/lispref/processes.texi +++ b/lispref/processes.texi | |||
| @@ -382,7 +382,7 @@ inputinput@point{} | |||
| 382 | 382 | ||
| 383 | @defun call-process-shell-command command &optional infile destination display &rest args | 383 | @defun call-process-shell-command command &optional infile destination display &rest args |
| 384 | This function executes the shell command @var{command} synchronously | 384 | This function executes the shell command @var{command} synchronously |
| 385 | in separate process. The final arguments @var{args} are additional | 385 | in a separate process. The final arguments @var{args} are additional |
| 386 | arguments to add at the end of @var{command}. The other arguments | 386 | arguments to add at the end of @var{command}. The other arguments |
| 387 | are handled as in @code{call-process}. | 387 | are handled as in @code{call-process}. |
| 388 | @end defun | 388 | @end defun |
| @@ -1512,7 +1512,7 @@ and @code{failed}. For a network server, the status is always | |||
| 1512 | @code{listen}. None of those values is possible for a real | 1512 | @code{listen}. None of those values is possible for a real |
| 1513 | subprocess. @xref{Process Information}. | 1513 | subprocess. @xref{Process Information}. |
| 1514 | 1514 | ||
| 1515 | You can stop and resume operation of a network processes by calling | 1515 | You can stop and resume operation of a network process by calling |
| 1516 | @code{stop-process} and @code{continue-process}. For a server | 1516 | @code{stop-process} and @code{continue-process}. For a server |
| 1517 | process, being stopped means not accepting new connections. (Up to 5 | 1517 | process, being stopped means not accepting new connections. (Up to 5 |
| 1518 | connection requests will be queued for when you resume the server; you | 1518 | connection requests will be queued for when you resume the server; you |
| @@ -1667,10 +1667,10 @@ meaning ask the system to allocate an unused port to listen on. | |||
| 1667 | @section Datagrams | 1667 | @section Datagrams |
| 1668 | @cindex datagrams | 1668 | @cindex datagrams |
| 1669 | 1669 | ||
| 1670 | A datagram connection communicates with individual packets | 1670 | A datagram connection communicates with individual packets rather |
| 1671 | rather than streams of data. Each call to @code{process-send} | 1671 | than streams of data. Each call to @code{process-send} sends one |
| 1672 | sends one datagram packet, and each datagram received results | 1672 | datagram packet (@pxref{Input to Processes}), and each datagram |
| 1673 | in one call to the filter function. | 1673 | received results in one call to the filter function. |
| 1674 | 1674 | ||
| 1675 | The datagram connection doesn't have to talk with the same remote | 1675 | The datagram connection doesn't have to talk with the same remote |
| 1676 | peer all the time. It has a @dfn{remote peer address} which specifies | 1676 | peer all the time. It has a @dfn{remote peer address} which specifies |
| @@ -1771,10 +1771,10 @@ in the local address space. | |||
| 1771 | @item | 1771 | @item |
| 1772 | An ``unsupported family'' address is represented by a cons | 1772 | An ``unsupported family'' address is represented by a cons |
| 1773 | @code{(@var{f} . @var{av})}, where @var{f} is the family number and | 1773 | @code{(@var{f} . @var{av})}, where @var{f} is the family number and |
| 1774 | @var{av} is a vector specifying the socket address using with one | 1774 | @var{av} is a vector specifying the socket address using one element |
| 1775 | element per address data byte. Do not rely on this format in portable | 1775 | per address data byte. Do not rely on this format in portable code, |
| 1776 | code, as it may depend on implementation defined constants, data | 1776 | as it may depend on implementation defined constants, data sizes, and |
| 1777 | sizes, and data structure alignment. | 1777 | data structure alignment. |
| 1778 | @end itemize | 1778 | @end itemize |
| 1779 | 1779 | ||
| 1780 | @item :nowait @var{bool} | 1780 | @item :nowait @var{bool} |