GNU bug report logs -
#1858
cleanup: POLL_FOR_INPUT
Previous Next
Reported by: Dan Nicolaescu <dann <at> ics.uci.edu>
Date: Sun, 11 Jan 2009 17:40:03 UTC
Severity: minor
Tags: fixed
Fixed in version 24.1
Done: Lars Magne Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
POLL_FOR_INPUT is defined in both process.c and keyboard.c, but not
exactly the same way:
keyboard.c:
/* 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_WINDOW_SYSTEM
#define POLL_FOR_INPUT
#endif
process.c:
/* 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.
*/
#if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
#define POLL_FOR_INPUT
#endif
keyboard.h has an #ifdef POLL_FOR_INPUT, but keyboard.h is included
before POLL_FOR_INPUT is defined...
The above is messy...
This bug report was last modified 13 years and 315 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.