Mercurial > emacs
changeset 7889:11d254f1f196
(init_sys_modes): Don't set up sigio here if window system.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 14 Jun 1994 20:33:44 +0000 |
parents | b26a8476561d |
children | e6e305453f19 |
files | src/sysdep.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 ());