aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c
index 237f202e2f2..868143bd12e 100644
--- a/src/process.c
+++ b/src/process.c
@@ -1457,12 +1457,12 @@ static Lisp_Object start_process_unwind ();
1457DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, 1457DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
1458 doc: /* Start a program in a subprocess. Return the process object for it. 1458 doc: /* Start a program in a subprocess. Return the process object for it.
1459NAME is name for process. It is modified if necessary to make it unique. 1459NAME is name for process. It is modified if necessary to make it unique.
1460BUFFER is the buffer or (buffer-name) to associate with the process. 1460BUFFER is the buffer (or buffer name) to associate with the process.
1461 Process output goes at end of that buffer, unless you specify 1461 Process output goes at end of that buffer, unless you specify
1462 an output stream or filter function to handle the output. 1462 an output stream or filter function to handle the output.
1463 BUFFER may be also nil, meaning that this process is not associated 1463 BUFFER may be also nil, meaning that this process is not associated
1464 with any buffer. 1464 with any buffer.
1465Third arg is program file name. It is searched for in PATH. 1465PROGRAM is the program file name. It is searched for in PATH.
1466Remaining arguments are strings to give program as arguments. 1466Remaining arguments are strings to give program as arguments.
1467 1467
1468usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */) 1468usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS) */)