changeset 15206:16d0e8c36378

(win32_wnd_proc): Disable setting of Vquit_flag at this opoint
author Geoff Voelker <voelker@cs.washington.edu>
date Fri, 10 May 1996 23:07:10 +0000
parents 0f5d6cd72e21
children 5be55ce2c9fa
files src/w32fns.c
diffstat 1 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;