diff options
| author | Eli Zaretskii | 2007-04-23 09:02:08 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2007-04-23 09:02:08 +0000 |
| commit | 4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2 (patch) | |
| tree | 7ad9bf14fb155c88fc3922fd7aa504a49f8ce745 /src | |
| parent | 815fde3466fd76fb89c4f47a141e1cc10bca26b5 (diff) | |
| download | emacs-4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2.tar.gz emacs-4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2.zip | |
(Fstart_process): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/process.c b/src/process.c index f012b2c058d..dac751f790a 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1558,12 +1558,17 @@ 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) |