aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2007-04-23 09:02:08 +0000
committerEli Zaretskii2007-04-23 09:02:08 +0000
commit4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2 (patch)
tree7ad9bf14fb155c88fc3922fd7aa504a49f8ce745 /src
parent815fde3466fd76fb89c4f47a141e1cc10bca26b5 (diff)
downloademacs-4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2.tar.gz
emacs-4b6c5eee9af2ef6b4fde97314d7fab8806a5b7b2.zip
(Fstart_process): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/process.c17
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.
1559NAME is name for process. It is modified if necessary to make it unique. 1559NAME is name for process. It is modified if necessary to make it unique.
1560BUFFER is the buffer (or buffer name) to associate with the process. 1560BUFFER 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. 1562Process output (both standard output and standard error streams) goes
1563 BUFFER may be also nil, meaning that this process is not associated 1563at end of BUFFER, unless you specify an output stream or filter
1564 with any buffer. 1564function to handle the output. BUFFER may also be nil, meaning that
1565PROGRAM is the program file name. It is searched for in PATH. 1565this process is not associated with any buffer. PROGRAM is the
1566Remaining arguments are strings to give program as arguments. 1566program file name. It is searched for in PATH. Remaining arguments
1567are strings to give program as arguments.
1568
1569If you want to separate standard output from standard error, invoke
1570the command through a shell and redirect one of them using the shell
1571syntax.
1567 1572
1568usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1573usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1569 (nargs, args) 1574 (nargs, args)