diff options
| author | Geoff Voelker | 1995-11-07 07:23:14 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1995-11-07 07:23:14 +0000 |
| commit | 583dcae42e45ab4de6a904c98563b38f8fdcb1c2 (patch) | |
| tree | d0eb48becb820a6ffa41b033e0379a91b0c60e5f /src | |
| parent | e98a93eb98bc01713ff18f0b52030b787ef1130e (diff) | |
| download | emacs-583dcae42e45ab4de6a904c98563b38f8fdcb1c2.tar.gz emacs-583dcae42e45ab4de6a904c98563b38f8fdcb1c2.zip | |
[HAVE_NTGUI] (POLL_FOR_INPUT): Define macro.
Use HAVE_WINDOW_SYSTEM instead of testing for specific window systems.
Diffstat (limited to 'src')
| -rw-r--r-- | src/process.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; | |||
| 208 | 208 | ||
| 209 | #include "sysselect.h" | 209 | #include "sysselect.h" |
| 210 | 210 | ||
| 211 | /* If we support X Windows, turn on the code to poll periodically | 211 | /* If we support a window system, turn on the code to poll periodically |
| 212 | to detect C-g. It isn't actually used when doing interrupt input. */ | 212 | to detect C-g. It isn't actually used when doing interrupt input. */ |
| 213 | #ifdef HAVE_X_WINDOWS | 213 | #ifdef HAVE_WINDOW_SYSTEM |
| 214 | #define POLL_FOR_INPUT | 214 | #define POLL_FOR_INPUT |
| 215 | #endif | 215 | #endif |
| 216 | 216 | ||