1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-07 04:10:27 -08:00

(win32_wnd_proc): Disable setting of Vquit_flag

at this opoint
This commit is contained in:
Geoff Voelker 1996-05-10 23:07:10 +00:00
parent 3cb20f4a49
commit 4ba07e8852

View file

@ -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;