From d6a9be454aa51164791c1bab85f531c24887aeb9 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 14 Jun 1994 20:33:44 +0000 Subject: [PATCH] (init_sys_modes): Don't set up sigio here if window system. --- src/sysdep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ()); -- 2.39.5