aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorPavel Janík2002-03-27 07:56:19 +0000
committerPavel Janík2002-03-27 07:56:19 +0000
commit320aebc9b698038399d8b8525a0589f35b45e788 (patch)
treee2663c1be6630de1691807b01793647b75752359 /src/process.c
parent63080afce880a4c067dfc2e7c5b04817070b82fe (diff)
downloademacs-320aebc9b698038399d8b8525a0589f35b45e788.tar.gz
emacs-320aebc9b698038399d8b8525a0589f35b45e788.zip
(set-network-process-options): Add usage.
(make-network-process): Doc fix.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index f298b51c2b0..8f50f100c3c 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1273,6 +1273,7 @@ BUFFER is the buffer or (buffer-name) to associate with the process.
1273 with any buffer. 1273 with any buffer.
1274Third arg is program file name. It is searched for in PATH. 1274Third arg is program file name. It is searched for in PATH.
1275Remaining arguments are strings to give program as arguments. 1275Remaining arguments are strings to give program as arguments.
1276
1276usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1277usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1277 (nargs, args) 1278 (nargs, args)
1278 int nargs; 1279 int nargs;
@@ -2348,7 +2349,6 @@ DEFUN ("set-network-process-options",
2348 Fset_network_process_options, Sset_network_process_options, 2349 Fset_network_process_options, Sset_network_process_options,
2349 1, MANY, 0, 2350 1, MANY, 0,
2350 doc: /* Set one or more options for network process PROCESS. 2351 doc: /* Set one or more options for network process PROCESS.
2351Arguments are PROCESS &rest OPTIONS.
2352Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE). 2352Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE).
2353A boolean value is false if it either zero or nil, true otherwise. 2353A boolean value is false if it either zero or nil, true otherwise.
2354 2354
@@ -2362,7 +2362,9 @@ keepalive=BOOL -- Send keep-alive messages on network stream.
2362linger=BOOL or TIMEOUT -- Send queued messages before closing. 2362linger=BOOL or TIMEOUT -- Send queued messages before closing.
2363oobinline=BOOL -- Place out-of-band data in receive data stream. 2363oobinline=BOOL -- Place out-of-band data in receive data stream.
2364priority=INT -- Set protocol defined priority for sent packets. 2364priority=INT -- Set protocol defined priority for sent packets.
2365reuseaddr=BOOL -- Allow reusing a recently used address. */) 2365reuseaddr=BOOL -- Allow reusing a recently used address.
2366
2367usage: (set-network-process-options PROCESS &rest OPTIONS) */)
2366 (nargs, args) 2368 (nargs, args)
2367 int nargs; 2369 int nargs;
2368 Lisp_Object *args; 2370 Lisp_Object *args;
@@ -2461,7 +2463,7 @@ defined constants, data sizes, and data structure alignment.
2461:coding CODING -- CODING is coding system for this process. 2463:coding CODING -- CODING is coding system for this process.
2462 2464
2463:options OPTIONS -- Set the specified options for the network process. 2465:options OPTIONS -- Set the specified options for the network process.
2464See `set-process-options' for details. 2466See `set-network-process-options' for details.
2465 2467
2466:nowait BOOL -- If BOOL is non-nil for a stream type client process, 2468:nowait BOOL -- If BOOL is non-nil for a stream type client process,
2467return without waiting for the connection to complete; instead, the 2469return without waiting for the connection to complete; instead, the