From: Karl Heuer Date: Mon, 29 May 1995 19:41:18 +0000 (+0000) Subject: (x_term_init): Call init_sigio only if interrupt_input. X-Git-Tag: emacs-19.34~3864 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=eee20f6aa9b29c200667ad6174c2ba983c26aa9f;p=emacs.git (x_term_init): Call init_sigio only if interrupt_input. --- 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) #endif /* F_SETOWN_BUG */ #ifdef SIGIO - init_sigio (connection); + if (interrupt_input) + init_sigio (connection); #endif /* ! defined (SIGIO) */ return dpyinfo;