(wait_reading_process_input): Don't signal SIGIO in batch mode.
authorRichard M. Stallman <rms@gnu.org>
Sun, 22 Jun 2003 00:04:49 +0000 (00:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 22 Jun 2003 00:04:49 +0000 (00:04 +0000)
src/ChangeLog
src/process.c

index 11bf207..a3eca94 100644 (file)
@@ -1,3 +1,16 @@
+2003-06-21  Richard M. Stallman  <rms@gnu.org>
+
+       * fileio.c (Fwrite_region): Alternate messages
+       for append and partial write.
+
+       * keyboard.c (read_key_sequence): When converting upcase fn key to
+       downcase, update fkey and keytran so `backspace' gets translated.
+
+       * keyboard.c (read_avail_input): Don't signal SIGHUP in batch mode.
+
+       * process.c (wait_reading_process_input): Don't signal SIGIO
+       in batch mode.
+
 2003-06-17  Kenichi Handa  <handa@m17n.org>
 
        * Makefile.in (xselect.o): Don't depend on charset.h, coding.h,
index fcc07a3..8fac995 100644 (file)
@@ -4163,7 +4163,7 @@ wait_reading_process_input (time_limit, microsecs, read_kbd, do_display)
         but select says there is input.  */
 
       if (XINT (read_kbd) && interrupt_input
-         && keyboard_bit_set (&Available))
+         && keyboard_bit_set (&Available) && ! noninteractive)
        kill (getpid (), SIGIO);
 #endif