aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2009-01-29 14:35:14 +0000
committerChong Yidong2009-01-29 14:35:14 +0000
commitcf0d293c4007fa3c871b125e6ec6992ec8072251 (patch)
tree60e08579ce773bc7b4725130c0270428df5750d8
parent6324e138b326260b257499e765438249673bfab7 (diff)
downloademacs-cf0d293c4007fa3c871b125e6ec6992ec8072251.tar.gz
emacs-cf0d293c4007fa3c871b125e6ec6992ec8072251.zip
(w32_console_read_socket): Update pending_signals.
-rw-r--r--src/w32inevt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/w32inevt.c b/src/w32inevt.c
index ac7ca644c54..05f7bd224f7 100644
--- a/src/w32inevt.c
+++ b/src/w32inevt.c
@@ -651,10 +651,12 @@ w32_console_read_socket (struct terminal *terminal,
651 if (interrupt_input_blocked) 651 if (interrupt_input_blocked)
652 { 652 {
653 interrupt_input_pending = 1; 653 interrupt_input_pending = 1;
654 pending_signals = 1;
654 return -1; 655 return -1;
655 } 656 }
656 657
657 interrupt_input_pending = 0; 658 interrupt_input_pending = 0;
659 pending_signals = pending_atimers;
658 BLOCK_INPUT; 660 BLOCK_INPUT;
659 661
660 for (;;) 662 for (;;)