* keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
It is never used otherwise.
This commit is contained in:
parent
ed571ccb1d
commit
2f38dff7b3
2 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
|
||||
It is never used otherwise.
|
||||
|
||||
2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* print.c (print_preprocess): Only check print_depth if print-circle
|
||||
|
|
|
@ -7196,6 +7196,7 @@ handle_async_input (void)
|
|||
#endif
|
||||
}
|
||||
|
||||
#ifdef SYNC_INPUT
|
||||
void
|
||||
process_pending_signals (void)
|
||||
{
|
||||
|
@ -7203,6 +7204,7 @@ process_pending_signals (void)
|
|||
handle_async_input ();
|
||||
do_pending_atimers ();
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef SIGIO /* for entire page */
|
||||
/* Note SIGIO has been undef'd if FIONREAD is missing. */
|
||||
|
|
Loading…
Add table
Reference in a new issue