summaryrefslogtreecommitdiff
path: root/src/w32fns.c
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1996-05-10 23:07:10 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1996-05-10 23:07:10 +0000
commitb3cc0e153bf246a9c0aaaf52fd93bfc08c993cd3 (patch)
tree0a34d579d0a9bc2477f995955c2acf8cbc131ad0 /src/w32fns.c
parent9d08ce9da9b10f9b71504ef22d0a7ad1bbaa0c31 (diff)
downloademacs-b3cc0e153bf246a9c0aaaf52fd93bfc08c993cd3.tar.gz
(win32_wnd_proc): Disable setting of Vquit_flag
at this opoint
Diffstat (limited to 'src/w32fns.c')
-rw-r--r--src/w32fns.c3
1 files changed, 3 insertions, 0 deletions
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;