diff options
| author | Geoff Voelker | 1996-05-10 23:07:10 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-05-10 23:07:10 +0000 |
| commit | 4ba07e8852faae3f4c7dd52c96e4ae10b01953ce (patch) | |
| tree | ecffa64ae413f5f77ba22fe698fd810f27d58d4b /src | |
| parent | 3cb20f4a4934e0eae4cfae7ea1ee0009b743584e (diff) | |
| download | emacs-4ba07e8852faae3f4c7dd52c96e4ae10b01953ce.tar.gz emacs-4ba07e8852faae3f4c7dd52c96e4ae10b01953ce.zip | |
(win32_wnd_proc): Disable setting of Vquit_flag
at this opoint
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32fns.c | 3 |
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) | |||
| 2965 | enter_crit (); | 2965 | enter_crit (); |
| 2966 | my_post_msg (&wmsg, hwnd, msg, wParam, lParam); | 2966 | my_post_msg (&wmsg, hwnd, msg, wParam, lParam); |
| 2967 | 2967 | ||
| 2968 | #if 0 | ||
| 2968 | /* Detect quit_char and set quit-flag directly. Note that we dow | 2969 | /* Detect quit_char and set quit-flag directly. Note that we dow |
| 2969 | this *after* posting the message to ensure the main thread will | 2970 | this *after* posting the message to ensure the main thread will |
| 2970 | be woken up if blocked in sys_select(). */ | 2971 | be woken up if blocked in sys_select(). */ |
| @@ -2976,6 +2977,8 @@ win32_wnd_proc (hwnd, msg, wParam, lParam) | |||
| 2976 | if (c == quit_char) | 2977 | if (c == quit_char) |
| 2977 | Vquit_flag = Qt; | 2978 | Vquit_flag = Qt; |
| 2978 | } | 2979 | } |
| 2980 | #endif | ||
| 2981 | |||
| 2979 | leave_crit (); | 2982 | leave_crit (); |
| 2980 | break; | 2983 | break; |
| 2981 | 2984 | ||