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 | |
| 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')
| -rw-r--r-- | src/ChangeLog | 13 | ||||
| -rw-r--r-- | src/process.c | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 11bf207f04a..a3eca94a416 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,16 @@ | |||
| 1 | 2003-06-21 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * fileio.c (Fwrite_region): Alternate messages | ||
| 4 | for append and partial write. | ||
| 5 | |||
| 6 | * keyboard.c (read_key_sequence): When converting upcase fn key to | ||
| 7 | downcase, update fkey and keytran so `backspace' gets translated. | ||
| 8 | |||
| 9 | * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode. | ||
| 10 | |||
| 11 | * process.c (wait_reading_process_input): Don't signal SIGIO | ||
| 12 | in batch mode. | ||
| 13 | |||
| 1 | 2003-06-17 Kenichi Handa <handa@m17n.org> | 14 | 2003-06-17 Kenichi Handa <handa@m17n.org> |
| 2 | 15 | ||
| 3 | * Makefile.in (xselect.o): Don't depend on charset.h, coding.h, | 16 | * Makefile.in (xselect.o): Don't depend on charset.h, coding.h, |
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 | ||