aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1998-05-15 20:53:53 +0000
committerRichard M. Stallman1998-05-15 20:53:53 +0000
commit53d6080399e89a52b6700c33adc3fbcf3ee0701d (patch)
treed8c0948cb89540097b8a3bdac63d477e453f6a17
parent1ce3dc2b2d069683aae490efa44da83f48df168d (diff)
downloademacs-53d6080399e89a52b6700c33adc3fbcf3ee0701d.tar.gz
emacs-53d6080399e89a52b6700c33adc3fbcf3ee0701d.zip
(w32_wnd_proc): Call signal_quit when C-g is received.
-rw-r--r--src/w32fns.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/w32fns.c b/src/w32fns.c
index 20833978926..7850e20eba1 100644
--- a/src/w32fns.c
+++ b/src/w32fns.c
@@ -3408,7 +3408,10 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
3408 3408
3409 /* The choice of message is somewhat arbitrary, as long as 3409 /* The choice of message is somewhat arbitrary, as long as
3410 the main thread handler just ignores it. */ 3410 the main thread handler just ignores it. */
3411 msg = WM_QUIT; 3411 msg = WM_NULL;
3412
3413 /* Interrupt any blocking system calls. */
3414 signal_quit ();
3412 } 3415 }
3413 } 3416 }
3414#endif 3417#endif