From: Geoff Voelker Date: Fri, 10 May 1996 23:07:10 +0000 (+0000) Subject: (win32_wnd_proc): Disable setting of Vquit_flag X-Git-Tag: emacs-19.34~656 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4ba07e8852faae3f4c7dd52c96e4ae10b01953ce;p=emacs.git (win32_wnd_proc): Disable setting of Vquit_flag at this opoint --- diff --git a/src/w32fns.c b/src/w32fns.c index f34c215227f..7655f16ffe1 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -2965,6 +2965,7 @@ win32_wnd_proc (hwnd, msg, wParam, lParam) 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 @@ win32_wnd_proc (hwnd, msg, wParam, lParam) if (c == quit_char) Vquit_flag = Qt; } +#endif + leave_crit (); break;