diff options
| author | Richard M. Stallman | 1995-04-07 22:41:58 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-04-07 22:41:58 +0000 |
| commit | 833ba34267260ed0fcf5d6964a5b45b583259e98 (patch) | |
| tree | 3cb8e9bb3a4bb53e8d49818a844a1b85169555cf /src/process.c | |
| parent | f9c4665aa728a1587e193befb3cc951092e9e806 (diff) | |
| download | emacs-833ba34267260ed0fcf5d6964a5b45b583259e98.tar.gz emacs-833ba34267260ed0fcf5d6964a5b45b583259e98.zip | |
(read_process_output_error_handler)
(exec_sentinel_error_handler): Fsleep_for wants two args.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/process.c b/src/process.c index 6304ddc7125..18ead4246ae 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -2249,7 +2249,7 @@ read_process_output_error_handler (error) | |||
| 2249 | cmd_error_internal (error, "error in process filter: "); | 2249 | cmd_error_internal (error, "error in process filter: "); |
| 2250 | Vinhibit_quit = Qt; | 2250 | Vinhibit_quit = Qt; |
| 2251 | update_echo_area (); | 2251 | update_echo_area (); |
| 2252 | Fsleep_for (make_number (2)); | 2252 | Fsleep_for (make_number (2), Qnil); |
| 2253 | } | 2253 | } |
| 2254 | 2254 | ||
| 2255 | /* Read pending output from the process channel, | 2255 | /* Read pending output from the process channel, |
| @@ -3315,7 +3315,7 @@ exec_sentinel_error_handler (error) | |||
| 3315 | cmd_error_internal (error, "error in process sentinel: "); | 3315 | cmd_error_internal (error, "error in process sentinel: "); |
| 3316 | Vinhibit_quit = Qt; | 3316 | Vinhibit_quit = Qt; |
| 3317 | update_echo_area (); | 3317 | update_echo_area (); |
| 3318 | Fsleep_for (make_number (2)); | 3318 | Fsleep_for (make_number (2), Qnil); |
| 3319 | } | 3319 | } |
| 3320 | 3320 | ||
| 3321 | static void | 3321 | static void |