diff options
| author | Richard M. Stallman | 1994-06-14 20:33:44 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-06-14 20:33:44 +0000 |
| commit | d6a9be454aa51164791c1bab85f531c24887aeb9 (patch) | |
| tree | 3e9336b3c652766d942f10348af7d30936546c9e /src | |
| parent | b906e00ba2b9cbf15edcf7cd7e70f3295bff0a49 (diff) | |
| download | emacs-d6a9be454aa51164791c1bab85f531c24887aeb9.tar.gz emacs-d6a9be454aa51164791c1bab85f531c24887aeb9.zip | |
(init_sys_modes): Don't set up sigio here if window system.
Diffstat (limited to 'src')
| -rw-r--r-- | src/sysdep.c | 3 |
1 files changed, 2 insertions, 1 deletions
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 () | |||
| 1318 | #ifdef F_SETFL | 1318 | #ifdef F_SETFL |
| 1319 | #ifndef F_SETOWN_BUG | 1319 | #ifndef F_SETOWN_BUG |
| 1320 | #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */ | 1320 | #ifdef F_GETOWN /* F_SETFL does not imply existence of F_GETOWN */ |
| 1321 | if (interrupt_input) | 1321 | if (interrupt_input |
| 1322 | && ! read_socket_hook && EQ (Vwindow_system, Qnil)) | ||
| 1322 | { | 1323 | { |
| 1323 | old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0); | 1324 | old_fcntl_owner = fcntl (input_fd, F_GETOWN, 0); |
| 1324 | fcntl (input_fd, F_SETOWN, getpid ()); | 1325 | fcntl (input_fd, F_SETOWN, getpid ()); |