aboutsummaryrefslogtreecommitdiffstats
path: root/src/sysdep.c
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1994-06-14 20:33:44 +0000
committerRichard M. Stallman <[email protected]>1994-06-14 20:33:44 +0000
commitd6a9be454aa51164791c1bab85f531c24887aeb9 (patch)
tree3e9336b3c652766d942f10348af7d30936546c9e /src/sysdep.c
parentb906e00ba2b9cbf15edcf7cd7e70f3295bff0a49 (diff)
(init_sys_modes): Don't set up sigio here if window system.
Diffstat (limited to 'src/sysdep.c')
-rw-r--r--src/sysdep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index ddee0b4560..cb8ee1cfaa 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 ());