diff options
| author | Richard M. Stallman | 2003-06-22 00:04:49 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-06-22 00:04:49 +0000 |
| commit | 2601f59e10218f49656f14146fc4dec1ee676b63 (patch) | |
| tree | 2a9fcc76c084e2557b8c5a1dd0d67273aa1a4fbc /src/process.c | |
| parent | 0c328a0ef53e90858b3f0be516dc917f5c68cdf6 (diff) | |
| download | emacs-2601f59e10218f49656f14146fc4dec1ee676b63.tar.gz emacs-2601f59e10218f49656f14146fc4dec1ee676b63.zip | |
(wait_reading_process_input): Don't signal SIGIO in batch mode.
Diffstat (limited to 'src/process.c')
| -rw-r--r-- | src/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/process.c b/src/process.c index fcc07a38c46..8fac99570cc 100644 --- a/src/process.c +++ b/src/process.c | |||
| @@ -4163,7 +4163,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display) | |||
| 4163 | but select says there is input. */ | 4163 | but select says there is input. */ |
| 4164 | 4164 | ||
| 4165 | if (XINT (read_kbd) && interrupt_input | 4165 | if (XINT (read_kbd) && interrupt_input |
| 4166 | && keyboard_bit_set (&Available)) | 4166 | && keyboard_bit_set (&Available) && ! noninteractive) |
| 4167 | kill (getpid (), SIGIO); | 4167 | kill (getpid (), SIGIO); |
| 4168 | #endif | 4168 | #endif |
| 4169 | 4169 | ||