aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-21 20:10:47 +0000
committerEli Zaretskii2008-10-21 20:10:47 +0000
commit545c2782247d305aa2fc0e53c3ff1f086a839093 (patch)
treeb53fb26254310162aa9c355ffd6b7de001411243
parent4433fa9161fd2d0c70a36e8c818f0da1547a7eec (diff)
downloademacs-545c2782247d305aa2fc0e53c3ff1f086a839093.tar.gz
emacs-545c2782247d305aa2fc0e53c3ff1f086a839093.zip
(Serial Ports): Wording fixes.
-rw-r--r--doc/lispref/processes.texi19
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
2497buffer's process is used. 2498buffer's process is used.
2498 2499
2499@item :speed @var{speed} 2500@item :speed @var{speed}
2500The speed of the serial port in bits per second, also called @dfn{baud 2501The speed of the serial port in bits per second, a.k.a.@: @dfn{baud
2501rate}. Any value can be given for @var{speed}, but most serial ports 2502rate}. The value can be any number, but most serial ports work only
2502work only at a few defined values between 1200 and 115200, with 9600 2503at a few defined values between 1200 and 115200, with 9600 being the
2503being the most common value. If @var{speed} is @code{nil}, the serial 2504most common value. If @var{speed} is @code{nil}, the function ignores
2504port is not configured any further, i.e., all other arguments are 2505all other arguments and does not configure the port. This may be
2505ignored. This may be useful for special serial ports such as 2506useful for special serial ports such as Bluetooth-to-serial converters
2506Bluetooth-to-serial converters which can only be configured through AT 2507which can only be configured through AT commands sent through the
2507commands sent through the connection. A value of @code{nil} for 2508connection. You can use the value of @code{nil} for @var{speed} only
2508@var{speed} can be used only for connections already opened by 2509for 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}