# HG changeset patch # User Geoff Voelker # Date 831769630 0 # Node ID 16d0e8c363785e48727a55141dc52d460aa42e31 # Parent 0f5d6cd72e21010bb7306a4d4a1611163a128a4e (win32_wnd_proc): Disable setting of Vquit_flag at this opoint diff -r 0f5d6cd72e21 -r 16d0e8c36378 src/w32fns.c --- a/src/w32fns.c Fri May 10 20:40:49 1996 +0000 +++ b/src/w32fns.c Fri May 10 23:07:10 1996 +0000 @@ -2965,6 +2965,7 @@ enter_crit (); my_post_msg (&wmsg, hwnd, msg, wParam, lParam); +#if 0 /* Detect quit_char and set quit-flag directly. Note that we dow this *after* posting the message to ensure the main thread will be woken up if blocked in sys_select(). */ @@ -2976,6 +2977,8 @@ if (c == quit_char) Vquit_flag = Qt; } +#endif + leave_crit (); break;