aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1995-06-18 22:28:53 +0000
committerRichard M. Stallman1995-06-18 22:28:53 +0000
commit087feab3c8e5ee514ed0f2ba4968cffbbbcd8cfe (patch)
tree001ffa8f4f35ce115867b5e9b5925bad4c178801
parentb47cc08a684989de37dc24e0fdae9711aa517d85 (diff)
downloademacs-087feab3c8e5ee514ed0f2ba4968cffbbbcd8cfe.tar.gz
emacs-087feab3c8e5ee514ed0f2ba4968cffbbbcd8cfe.zip
(quit_throw_to_read_char): Turn off the error check
testing poll_suppress_count.
-rw-r--r--src/keyboard.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/keyboard.c b/src/keyboard.c
index e07d4324e56..2aa93ac023b 100644
--- a/src/keyboard.c
+++ b/src/keyboard.c
@@ -6538,11 +6538,15 @@ quit_throw_to_read_char ()
6538 Vunread_command_events = Qnil; 6538 Vunread_command_events = Qnil;
6539 unread_command_char = -1; 6539 unread_command_char = -1;
6540 6540
6541#if 0 /* Currently, sit_for is called from read_char without turning
6542 off polling. And that can call set_waiting_for_input.
6543 It seems to be harmless. */
6541#ifdef POLL_FOR_INPUT 6544#ifdef POLL_FOR_INPUT
6542 /* May be > 1 if in recursive minibuffer. */ 6545 /* May be > 1 if in recursive minibuffer. */
6543 if (poll_suppress_count == 0) 6546 if (poll_suppress_count == 0)
6544 abort (); 6547 abort ();
6545#endif 6548#endif
6549#endif
6546#ifdef MULTI_FRAME 6550#ifdef MULTI_FRAME
6547 if (FRAMEP (internal_last_event_frame) 6551 if (FRAMEP (internal_last_event_frame)
6548 && XFRAME (internal_last_event_frame) != selected_frame) 6552 && XFRAME (internal_last_event_frame) != selected_frame)