mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-11 05:51:21 -08:00
Fix compilation error during non-X builds.
* src/keyboard.c (Fset_input_interrupt_mode): Fix compilation error during non-X builds. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-459
This commit is contained in:
parent
7f227e762c
commit
4beb2d71ea
1 changed files with 5 additions and 1 deletions
|
|
@ -10661,7 +10661,11 @@ See also `current-input-mode'. */)
|
|||
int new_interrupt_input;
|
||||
#ifdef SIGIO
|
||||
/* Note SIGIO has been undef'd if FIONREAD is missing. */
|
||||
if (x_display_list != NULL)
|
||||
if (0
|
||||
#ifdef HAVE_X_WINDOWS
|
||||
|| x_display_list != NULL
|
||||
#endif
|
||||
)
|
||||
{
|
||||
/* When using X, don't give the user a real choice,
|
||||
because we haven't implemented the mechanisms to support it. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue