From 320aebc9b698038399d8b8525a0589f35b45e788 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pavel=20Jan=C3=ADk?= Date: Wed, 27 Mar 2002 07:56:19 +0000 Subject: [PATCH] (set-network-process-options): Add usage. (make-network-process): Doc fix. --- src/ChangeLog | 5 +++++ src/process.c | 8 +++++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 7740e93466..040e9ee67a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2002-03-27 Pavel Jan,Bm(Bk + + * process.c (set-network-process-options): Add usage. + (make-network-process): Doc fix. + 2002-03-26 Eli Zaretskii * emacs.c (Fdump_emacs): Fix a typo in "command-line-processed". diff --git a/src/process.c b/src/process.c index f298b51c2b..8f50f100c3 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. with any buffer. Third arg is program file name. It is searched for in PATH. Remaining arguments are strings to give program as arguments. + usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) (nargs, args) int nargs; @@ -2348,7 +2349,6 @@ DEFUN ("set-network-process-options", Fset_network_process_options, Sset_network_process_options, 1, MANY, 0, doc: /* Set one or more options for network process PROCESS. -Arguments are PROCESS &rest OPTIONS. Each option is either a string "OPT=VALUE" or a cons (OPT . VALUE). A boolean value is false if it either zero or nil, true otherwise. @@ -2362,7 +2362,9 @@ keepalive=BOOL -- Send keep-alive messages on network stream. linger=BOOL or TIMEOUT -- Send queued messages before closing. oobinline=BOOL -- Place out-of-band data in receive data stream. priority=INT -- Set protocol defined priority for sent packets. -reuseaddr=BOOL -- Allow reusing a recently used address. */) +reuseaddr=BOOL -- Allow reusing a recently used address. + +usage: (set-network-process-options PROCESS &rest OPTIONS) */) (nargs, args) int nargs; Lisp_Object *args; @@ -2461,7 +2463,7 @@ defined constants, data sizes, and data structure alignment. :coding CODING -- CODING is coding system for this process. :options OPTIONS -- Set the specified options for the network process. -See `set-process-options' for details. +See `set-network-process-options' for details. :nowait BOOL -- If BOOL is non-nil for a stream type client process, return without waiting for the connection to complete; instead, the -- 2.20.1