diff options
| author | Pavel Janík | 2002-03-27 07:56:19 +0000 |
|---|---|---|
| committer | Pavel Janík | 2002-03-27 07:56:19 +0000 |
| commit | 320aebc9b698038399d8b8525a0589f35b45e788 (patch) | |
| tree | e2663c1be6630de1691807b01793647b75752359 /src/process.c | |
| parent | 63080afce880a4c067dfc2e7c5b04817070b82fe (diff) | |
| download | emacs-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.c | 8 |
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. |
| 1274 | Third arg is program file name. It is searched for in PATH. | 1274 | Third arg is program file name. It is searched for in PATH. |
| 1275 | Remaining arguments are strings to give program as arguments. | 1275 | Remaining arguments are strings to give program as arguments. |
| 1276 | |||
| 1276 | usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) | 1277 | usage: (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. |
| 2351 | Arguments are PROCESS &rest OPTIONS. | ||
| 2352 | Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE). | 2352 | Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE). |
| 2353 | A boolean value is false if it either zero or nil, true otherwise. | 2353 | A 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. | |||
| 2362 | linger=BOOL or TIMEOUT -- Send queued messages before closing. | 2362 | linger=BOOL or TIMEOUT -- Send queued messages before closing. |
| 2363 | oobinline=BOOL -- Place out-of-band data in receive data stream. | 2363 | oobinline=BOOL -- Place out-of-band data in receive data stream. |
| 2364 | priority=INT -- Set protocol defined priority for sent packets. | 2364 | priority=INT -- Set protocol defined priority for sent packets. |
| 2365 | reuseaddr=BOOL -- Allow reusing a recently used address. */) | 2365 | reuseaddr=BOOL -- Allow reusing a recently used address. |
| 2366 | |||
| 2367 | usage: (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. |
| 2464 | See `set-process-options' for details. | 2466 | See `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, |
| 2467 | return without waiting for the connection to complete; instead, the | 2469 | return without waiting for the connection to complete; instead, the |