aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorMiles Bader2007-04-24 21:56:25 +0000
committerMiles Bader2007-04-24 21:56:25 +0000
commit991a760232de757d71d8dbbed47ee12d81e29d53 (patch)
tree2440730c37ae3f167a50f5c3ac5eaeab9b72b7b0 /src/process.c
parent0bb328f8f6fce06a7fc65670c7d5c011b613e1c5 (diff)
parent3851329262d6558d5e1a93157d44777d0a39e38e (diff)
downloademacs-991a760232de757d71d8dbbed47ee12d81e29d53.tar.gz
emacs-991a760232de757d71d8dbbed47ee12d81e29d53.zip
Merge from emacs--devo--0
Patches applied: * emacs--devo--0 (patch 698-710) - Update from CVS - Merge from gnus--rel--5.10 * gnus--rel--5.10 (patch 216) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-196
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/process.c b/src/process.c
index 2e41267479c..567aae7c08f 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1557,13 +1557,19 @@ DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1557 doc: /* Start a program in a subprocess. Return the process object for it. 1557 doc: /* Start a program in a subprocess. Return the process object for it.
1558NAME is name for process. It is modified if necessary to make it unique. 1558NAME is name for process. It is modified if necessary to make it unique.
1559BUFFER is the buffer (or buffer name) to associate with the process. 1559BUFFER is the buffer (or buffer name) to associate with the process.
1560 Process output goes at end of that buffer, unless you specify 1560
1561 an output stream or filter function to handle the output. 1561Process output (both standard output and standard error streams) goes
1562 BUFFER may be also nil, meaning that this process is not associated 1562at end of BUFFER, unless you specify an output stream or filter
1563 with any buffer. 1563function to handle the output. BUFFER may also be nil, meaning that
1564this process is not associated with any buffer.
1565
1564PROGRAM is the program file name. It is searched for in PATH. 1566PROGRAM is the program file name. It is searched for in PATH.
1565Remaining arguments are strings to give program as arguments. 1567Remaining arguments are strings to give program as arguments.
1566 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.
1572
1567usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1573usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)
1568 (nargs, args) 1574 (nargs, args)
1569 int nargs; 1575 int nargs;