From: Richard M. Stallman Date: Tue, 14 Jun 1994 20:33:44 +0000 (+0000) Subject: (init_sys_modes): Don't set up sigio here if window system. X-Git-Tag: emacs-19.34~7964 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d6a9be454aa51164791c1bab85f531c24887aeb9;p=emacs.git (init_sys_modes): Don't set up sigio here if window system. --- diff --git a/src/sysdep.c b/src/sysdep.c index ddee0b4560a..cb8ee1cfaae 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1318,7 +1318,8 @@ init_sys_modes () #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 ());