aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog13
-rw-r--r--src/process.c2
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 @@
12003-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
12003-06-17 Kenichi Handa <handa@m17n.org> 142003-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