# HG changeset patch # User Juanma Barranquero # Date 1084211258 0 # Node ID 05e8ea84c3769ae291d891242925502cb26b30b7 # Parent 4ac7f5790db9f450e3239250c17728cdeb866bde (Fstart_process): Fix docstring. diff -r 4ac7f5790db9 -r 05e8ea84c376 src/process.c --- a/src/process.c Mon May 10 17:44:56 2004 +0000 +++ b/src/process.c Mon May 10 17:47:38 2004 +0000 @@ -1457,12 +1457,12 @@ DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, doc: /* Start a program in a subprocess. Return the process object for it. NAME is name for process. It is modified if necessary to make it unique. -BUFFER is the buffer or (buffer-name) to associate with the process. +BUFFER is the buffer (or buffer name) to associate with the process. Process output goes at end of that buffer, unless you specify an output stream or filter function to handle the output. BUFFER may be also nil, meaning that this process is not associated with any buffer. -Third arg is program file name. It is searched for in PATH. +PROGRAM is the 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) */)