summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2012-04-18 00:21:18 -0700
committerGlenn Morris <rgm@gnu.org>2012-04-18 00:21:18 -0700
commit4373fd432657ded713427d0e982298f4d26a60b6 (patch)
tree69904920497cd3fde96f58159057487bce2cbdcb /src
parent0e80650b8bfd4fb5ff0bef8483608144e6972436 (diff)
downloademacs-4373fd432657ded713427d0e982298f4d26a60b6.tar.gz
More small doc and lispref edits related to processes
* doc/lispref/processes.texi (Serial Ports, Byte Packing, Bindat Spec) (Bindat Functions): Copyedits. * src/process.c (Fset_process_inherit_coding_system_flag) (Fset_process_query_on_exit_flag): Doc fix (mention return value). (Fmake_network_process, Fmake_serial_process): Doc fix. * admin/FOR-RELEASE: Related markup.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/process.c7
2 files changed, 4 insertions, 5 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fb4da407b70..00d257e6984 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -2,7 +2,7 @@
* process.c (Fset_process_inherit_coding_system_flag)
(Fset_process_query_on_exit_flag): Doc fix (mention return value).
- (Fmake_network_process): Doc fix.
+ (Fmake_network_process, Fmake_serial_process): Doc fix.
2012-04-17 Eli Zaretskii <eliz@gnu.org>
diff --git a/src/process.c b/src/process.c
index f6ea5d75e1a..3ee22d270e9 100644
--- a/src/process.c
+++ b/src/process.c
@@ -2528,7 +2528,7 @@ could be "COM1", or "\\\\.\\COM10" for ports higher than COM9 (double
the backslashes in strings).
:speed SPEED -- (mandatory) is handled by `serial-process-configure',
-which is called by `make-serial-process'.
+which this function calls.
:name NAME -- NAME is the name of the process. If NAME is not given,
the value of PORT is used.
@@ -2557,13 +2557,12 @@ but you can send outgoing data. The stopped state is cleared by
:plist PLIST -- Install PLIST as the initial plist of the process.
-:speed
:bytesize
:parity
:stopbits
:flowcontrol
--- These arguments are handled by `serial-process-configure', which is
-called by `make-serial-process'.
+-- This function calls `serial-process-configure' to handle these
+arguments.
The original argument list, possibly modified by later configuration,
is available via the function `process-contact'.