# HG changeset patch # User Richard M. Stallman # Date 730493373 0 # Node ID ba1e55a4ba76630d6014294250480ae17f81d0e0 # Parent 05297a5a8238a959d18b2383a625ebaa807888fd (read_avail_input): Args to `kill' were backwards. diff -r 05297a5a8238 -r ba1e55a4ba76 src/keyboard.c --- a/src/keyboard.c Tue Feb 23 14:23:06 1993 +0000 +++ b/src/keyboard.c Tue Feb 23 18:49:33 1993 +0000 @@ -2545,6 +2545,9 @@ /* Formerly simply reported no input, but that sometimes led to a failure of Emacs to terminate. SIGHUP seems appropriate if we can't reach the terminal. */ + /* ??? Is it really right to send the signal just to this process + rather than to the whole process group? + Perhaps on systems with FIONREAD Emacs is alone in its group. */ kill (getpid (), SIGHUP); if (nread == 0) return 0;