]> git.eshelyaron.com Git - emacs.git/commitdiff
(win32_wnd_proc): Disable setting of Vquit_flag
authorGeoff Voelker <voelker@cs.washington.edu>
Fri, 10 May 1996 23:07:10 +0000 (23:07 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Fri, 10 May 1996 23:07:10 +0000 (23:07 +0000)
at this o\b\b\b\bpoint

src/w32fns.c

index f34c215227fb71f4b52f8025504b108c1445be2c..7655f16ffe1e333824a7ac8dea9fa67a47c0ea8c 100644 (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;