From: Geoff Voelker Date: Tue, 7 Nov 1995 07:23:14 +0000 (+0000) Subject: [HAVE_NTGUI] (POLL_FOR_INPUT): Define macro. X-Git-Tag: emacs-19.34~2446 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=583dcae42e45ab4de6a904c98563b38f8fdcb1c2;p=emacs.git [HAVE_NTGUI] (POLL_FOR_INPUT): Define macro. Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems. --- diff --git a/src/process.c b/src/process.c index 9862bb30e85..e2e337f90df 100644 --- a/src/process.c +++ b/src/process.c @@ -208,9 +208,9 @@ int update_tick; #include "sysselect.h" -/* If we support X Windows, turn on the code to poll periodically +/* If we support a window system, turn on the code to poll periodically to detect C-g. It isn't actually used when doing interrupt input. */ -#ifdef HAVE_X_WINDOWS +#ifdef HAVE_WINDOW_SYSTEM #define POLL_FOR_INPUT #endif