diff options
| author | Eli Zaretskii | 2008-10-21 20:10:47 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2008-10-21 20:10:47 +0000 |
| commit | 545c2782247d305aa2fc0e53c3ff1f086a839093 (patch) | |
| tree | b53fb26254310162aa9c355ffd6b7de001411243 | |
| parent | 4433fa9161fd2d0c70a36e8c818f0da1547a7eec (diff) | |
| download | emacs-545c2782247d305aa2fc0e53c3ff1f086a839093.tar.gz emacs-545c2782247d305aa2fc0e53c3ff1f086a839093.zip | |
(Serial Ports): Wording fixes.
| -rw-r--r-- | doc/lispref/processes.texi | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/lispref/processes.texi b/doc/lispref/processes.texi index 0ae10fac831..c0beb7a67df 100644 --- a/doc/lispref/processes.texi +++ b/doc/lispref/processes.texi | |||
| @@ -2356,6 +2356,7 @@ If the vector does not include the port number, @var{p}, or if | |||
| 2356 | @section Communicating with Serial Ports | 2356 | @section Communicating with Serial Ports |
| 2357 | @cindex @file{/dev/tty} | 2357 | @cindex @file{/dev/tty} |
| 2358 | @cindex @file{COM1} | 2358 | @cindex @file{COM1} |
| 2359 | @cindex serial connections | ||
| 2359 | 2360 | ||
| 2360 | Emacs can communicate with serial ports. For interactive use, | 2361 | Emacs can communicate with serial ports. For interactive use, |
| 2361 | @kbd{M-x serial-term} opens a terminal window. In a Lisp program, | 2362 | @kbd{M-x serial-term} opens a terminal window. In a Lisp program, |
| @@ -2497,15 +2498,15 @@ be configured. If none of these arguments is given, the current | |||
| 2497 | buffer's process is used. | 2498 | buffer's process is used. |
| 2498 | 2499 | ||
| 2499 | @item :speed @var{speed} | 2500 | @item :speed @var{speed} |
| 2500 | The speed of the serial port in bits per second, also called @dfn{baud | 2501 | The speed of the serial port in bits per second, a.k.a.@: @dfn{baud |
| 2501 | rate}. Any value can be given for @var{speed}, but most serial ports | 2502 | rate}. The value can be any number, but most serial ports work only |
| 2502 | work only at a few defined values between 1200 and 115200, with 9600 | 2503 | at a few defined values between 1200 and 115200, with 9600 being the |
| 2503 | being the most common value. If @var{speed} is @code{nil}, the serial | 2504 | most common value. If @var{speed} is @code{nil}, the function ignores |
| 2504 | port is not configured any further, i.e., all other arguments are | 2505 | all other arguments and does not configure the port. This may be |
| 2505 | ignored. This may be useful for special serial ports such as | 2506 | useful for special serial ports such as Bluetooth-to-serial converters |
| 2506 | Bluetooth-to-serial converters which can only be configured through AT | 2507 | which can only be configured through AT commands sent through the |
| 2507 | commands sent through the connection. A value of @code{nil} for | 2508 | connection. You can use the value of @code{nil} for @var{speed} only |
| 2508 | @var{speed} can be used only for connections already opened by | 2509 | for connections that are already open by a previous call to |
| 2509 | @code{make-serial-process} or @code{serial-term}. | 2510 | @code{make-serial-process} or @code{serial-term}. |
| 2510 | 2511 | ||
| 2511 | @item :bytesize @var{bytesize} | 2512 | @item :bytesize @var{bytesize} |