[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r107978: * keyboard.c (process_pendin
From: |
Paul Eggert |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r107978: * keyboard.c (process_pending_signals): Define only if SYNC_INPUT. |
Date: |
Fri, 20 Apr 2012 14:26:18 -0700 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 107978
committer: Paul Eggert <address@hidden>
branch nick: trunk
timestamp: Fri 2012-04-20 14:26:18 -0700
message:
* keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
It is never used otherwise.
modified:
src/ChangeLog
src/keyboard.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog 2012-04-20 13:02:20 +0000
+++ b/src/ChangeLog 2012-04-20 21:26:18 +0000
@@ -1,3 +1,8 @@
+2012-04-20 Paul Eggert <address@hidden>
+
+ * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
+ It is never used otherwise.
+
2012-04-20 Stefan Monnier <address@hidden>
* print.c (print_preprocess): Only check print_depth if print-circle
=== modified file 'src/keyboard.c'
--- a/src/keyboard.c 2012-04-10 19:36:17 +0000
+++ b/src/keyboard.c 2012-04-20 21:26:18 +0000
@@ -7196,6 +7196,7 @@
#endif
}
+#ifdef SYNC_INPUT
void
process_pending_signals (void)
{
@@ -7203,6 +7204,7 @@
handle_async_input ();
do_pending_atimers ();
}
+#endif
#ifdef SIGIO /* for entire page */
/* Note SIGIO has been undef'd if FIONREAD is missing. */
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r107978: * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.,
Paul Eggert <=