Skip to content

Commit

Permalink
Use the same condition for POLL_FOR_INPUT in both keyboard.c and proc…
Browse files Browse the repository at this point in the history
…ess.c

Fixes: debbugs:1858
  • Loading branch information
larsmagne committed Jul 16, 2011
1 parent 011b0ad commit dd88932
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions src/ChangeLog
@@ -1,3 +1,8 @@
2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>

* process.c: Use the same condition for POLL_FOR_INPUT in both
keyboard.c and process.c (bug#1858).

2011-07-09 Lawrence Mitchell <wence@gmx.li>

* gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
Expand Down
2 changes: 1 addition & 1 deletion src/process.c
Expand Up @@ -245,7 +245,7 @@ static void create_pty (Lisp_Object);

/* 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
#if defined(HAVE_WINDOW_SYSTEM) && !defined(USE_ASYNC_EVENTS)
#define POLL_FOR_INPUT
#endif

Expand Down

0 comments on commit dd88932

Please sign in to comment.