]> git.eshelyaron.com Git - emacs.git/commitdiff
(Fstart_process): Fix docstring.
authorJuanma Barranquero <lekktu@gmail.com>
Mon, 10 May 2004 17:47:38 +0000 (17:47 +0000)
committerJuanma Barranquero <lekktu@gmail.com>
Mon, 10 May 2004 17:47:38 +0000 (17:47 +0000)
src/process.c

index 237f202e2f2bd05d2f8819823aea6f8196dd3122..868143bd12efe027ef8014385b5a80a9fdebba76 100644 (file)
@@ -1457,12 +1457,12 @@ static Lisp_Object start_process_unwind ();
 DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0,
        doc: /* Start a program in a subprocess.  Return the process object for it.
 NAME is name for process.  It is modified if necessary to make it unique.
-BUFFER is the buffer or (buffer-name) to associate with the process.
+BUFFER is the buffer (or buffer name) to associate with the process.
  Process output goes at end of that buffer, unless you specify
  an output stream or filter function to handle the output.
  BUFFER may be also nil, meaning that this process is not associated
  with any buffer.
-Third arg is program file name.  It is searched for in PATH.
+PROGRAM is the program file name.  It is searched for in PATH.
 Remaining arguments are strings to give program as arguments.
 
 usage: (start-process NAME BUFFER PROGRAM &rest PROGRAM-ARGS)  */)