diff options
| author | Paul Eggert | 2012-04-20 14:26:18 -0700 |
|---|---|---|
| committer | Paul Eggert | 2012-04-20 14:26:18 -0700 |
| commit | 2f38dff7b3e82b8b054927cda25620b4eac3239c (patch) | |
| tree | ca6872f468d34cada2ea08b1ec78a5b6312c654f /src | |
| parent | ed571ccb1d14abc788a29c3b3bbf08aa4b951ab8 (diff) | |
| download | emacs-2f38dff7b3e82b8b054927cda25620b4eac3239c.tar.gz emacs-2f38dff7b3e82b8b054927cda25620b4eac3239c.zip | |
* keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
It is never used otherwise.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/keyboard.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a6fcc80da8a..a3101252fe9 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-20 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * keyboard.c (process_pending_signals): Define only if SYNC_INPUT. | ||
| 4 | It is never used otherwise. | ||
| 5 | |||
| 1 | 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca> | 6 | 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 7 | ||
| 3 | * print.c (print_preprocess): Only check print_depth if print-circle | 8 | * print.c (print_preprocess): Only check print_depth if print-circle |
diff --git a/src/keyboard.c b/src/keyboard.c index 9ff19d61d41..d55a726827e 100644 --- a/src/keyboard.c +++ b/src/keyboard.c | |||
| @@ -7196,6 +7196,7 @@ handle_async_input (void) | |||
| 7196 | #endif | 7196 | #endif |
| 7197 | } | 7197 | } |
| 7198 | 7198 | ||
| 7199 | #ifdef SYNC_INPUT | ||
| 7199 | void | 7200 | void |
| 7200 | process_pending_signals (void) | 7201 | process_pending_signals (void) |
| 7201 | { | 7202 | { |
| @@ -7203,6 +7204,7 @@ process_pending_signals (void) | |||
| 7203 | handle_async_input (); | 7204 | handle_async_input (); |
| 7204 | do_pending_atimers (); | 7205 | do_pending_atimers (); |
| 7205 | } | 7206 | } |
| 7207 | #endif | ||
| 7206 | 7208 | ||
| 7207 | #ifdef SIGIO /* for entire page */ | 7209 | #ifdef SIGIO /* for entire page */ |
| 7208 | /* Note SIGIO has been undef'd if FIONREAD is missing. */ | 7210 | /* Note SIGIO has been undef'd if FIONREAD is missing. */ |