comparison src/process.c @ 77440:e9b4790481bc

(Fstart_process): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Mon, 23 Apr 2007 09:02:08 +0000
parents fbe60d04cec2
children 4f679f6070a0
comparison
equal deleted inserted replaced
77439:850af384ea3c 77440:e9b4790481bc
1556 1556
1557 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, 1557 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1558 doc: /* Start a program in a subprocess. Return the process object for it. 1558 doc: /* Start a program in a subprocess. Return the process object for it.
1559 NAME is name for process. It is modified if necessary to make it unique. 1559 NAME is name for process. It is modified if necessary to make it unique.
1560 BUFFER is the buffer (or buffer name) to associate with the process. 1560 BUFFER is the buffer (or buffer name) to associate with the process.
1561 Process output goes at end of that buffer, unless you specify 1561
1562 an output stream or filter function to handle the output. 1562 Process output (both standard output and standard error streams) goes
1563 BUFFER may be also nil, meaning that this process is not associated 1563 at end of BUFFER, unless you specify an output stream or filter
1564 with any buffer. 1564 function to handle the output. BUFFER may also be nil, meaning that
1565 PROGRAM is the program file name. It is searched for in PATH. 1565 this process is not associated with any buffer. PROGRAM is the
1566 Remaining arguments are strings to give program as arguments. 1566 program file name. It is searched for in PATH. Remaining arguments
1567 are strings to give program as arguments.
1568
1569 If you want to separate standard output from standard error, invoke
1570 the command through a shell and redirect one of them using the shell
1571 syntax.
1567 1572
1568 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1573 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1569 (nargs, args) 1574 (nargs, args)
1570 int nargs; 1575 int nargs;
1571 register Lisp_Object *args; 1576 register Lisp_Object *args;