diff options
| author | Karl Heuer | 1995-05-29 19:41:18 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-05-29 19:41:18 +0000 |
| commit | eee20f6aa9b29c200667ad6174c2ba983c26aa9f (patch) | |
| tree | 4c5ef75079ecf6f414becc29cf72a3e8edf2c582 /src | |
| parent | 9a0f60bbb776046a2706e5029d13d13ceec7ca94 (diff) | |
| download | emacs-eee20f6aa9b29c200667ad6174c2ba983c26aa9f.tar.gz emacs-eee20f6aa9b29c200667ad6174c2ba983c26aa9f.zip | |
(x_term_init): Call init_sigio only if interrupt_input.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index 372f0fe5f30..14d77c1adc2 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -5813,7 +5813,8 @@ x_term_init (display_name, xrm_option, resource_name) | |||
| 5813 | #endif /* F_SETOWN_BUG */ | 5813 | #endif /* F_SETOWN_BUG */ |
| 5814 | 5814 | ||
| 5815 | #ifdef SIGIO | 5815 | #ifdef SIGIO |
| 5816 | init_sigio (connection); | 5816 | if (interrupt_input) |
| 5817 | init_sigio (connection); | ||
| 5817 | #endif /* ! defined (SIGIO) */ | 5818 | #endif /* ! defined (SIGIO) */ |
| 5818 | 5819 | ||
| 5819 | return dpyinfo; | 5820 | return dpyinfo; |