# HG changeset patch # User Richard M. Stallman # Date 771626024 0 # Node ID 11d254f1f196c8540da1e150d979388a609b3880 # Parent b26a8476561dabc6dbe073f0ffa92987a0b7909d (init_sys_modes): Don't set up sigio here if window system. diff -r b26a8476561d -r 11d254f1f196 src/sysdep.c --- a/src/sysdep.c Tue Jun 14 20:19:04 1994 +0000 +++ b/src/sysdep.c Tue Jun 14 20:33:44 1994 +0000 @@ -1318,7 +1318,8 @@ #ifdef F_SETFL #ifndef F_SETOWN_BUG #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */ - if (interrupt_input) + if (interrupt_input + && ! read_socket_hook && EQ (Vwindow_system, Qnil)) { old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0); fcntl (input_fd, F_SETOWN, getpid ());