diff options
| author | Dave Love | 2000-02-01 15:01:28 +0000 |
|---|---|---|
| committer | Dave Love | 2000-02-01 15:01:28 +0000 |
| commit | 8c983bf2575825fdaef0caa7b2cd5a9561969629 (patch) | |
| tree | b42a618ee68fa1e78a2be17265809e619053ecc7 /src/process.c | |
| parent | 9a90d84c17fc094f9ba8f9347632390668f33a0e (diff) | |
| download | emacs-8c983bf2575825fdaef0caa7b2cd5a9561969629.tar.gz emacs-8c983bf2575825fdaef0caa7b2cd5a9561969629.zip | |
(Fstart_process): Doc fix.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index 71e244fc7fb..9fe2c5af942 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -1023,7 +1023,6 @@ static Lisp_Object start_process_unwind (); | |||
| 1023 | 1023 | ||
| 1024 | DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, | 1024 | DEFUN ("start-process", Fstart_process, Sstart_process, 3, MANY, 0, |
| 1025 | "Start a program in a subprocess. Return the process object for it.\n\ | 1025 | "Start a program in a subprocess. Return the process object for it.\n\ |
| 1026 | Args are NAME BUFFER PROGRAM &rest PROGRAM-ARGS\n\ | ||
| 1027 | NAME is name for process. It is modified if necessary to make it unique.\n\ | 1026 | NAME is name for process. It is modified if necessary to make it unique.\n\ |
| 1028 | BUFFER is the buffer or (buffer-name) to associate with the process.\n\ | 1027 | BUFFER is the buffer or (buffer-name) to associate with the process.\n\ |
| 1029 | Process output goes at end of that buffer, unless you specify\n\ | 1028 | Process output goes at end of that buffer, unless you specify\n\ |
| @@ -2835,6 +2834,7 @@ read_process_output_error_handler (error) | |||
| 2835 | Vinhibit_quit = Qt; | 2834 | Vinhibit_quit = Qt; |
| 2836 | update_echo_area (); | 2835 | update_echo_area (); |
| 2837 | Fsleep_for (make_number (2), Qnil); | 2836 | Fsleep_for (make_number (2), Qnil); |
| 2837 | return Qt; | ||
| 2838 | } | 2838 | } |
| 2839 | 2839 | ||
| 2840 | /* Read pending output from the process channel, | 2840 | /* Read pending output from the process channel, |
| @@ -4263,6 +4263,7 @@ exec_sentinel_error_handler (error) | |||
| 4263 | Vinhibit_quit = Qt; | 4263 | Vinhibit_quit = Qt; |
| 4264 | update_echo_area (); | 4264 | update_echo_area (); |
| 4265 | Fsleep_for (make_number (2), Qnil); | 4265 | Fsleep_for (make_number (2), Qnil); |
| 4266 | return Qt; | ||
| 4266 | } | 4267 | } |
| 4267 | 4268 | ||
| 4268 | static void | 4269 | static void |