1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-28 09:14:50 -07:00

(w32_wnd_proc): Call signal_quit when C-g is received.

This commit is contained in:
Richard M. Stallman 1998-05-15 20:53:53 +00:00
parent 1ce3dc2b2d
commit 53d6080399

View file

@ -3408,7 +3408,10 @@ w32_wnd_proc (hwnd, msg, wParam, lParam)
/* The choice of message is somewhat arbitrary, as long as
the main thread handler just ignores it. */
msg = WM_QUIT;
msg = WM_NULL;
/* Interrupt any blocking system calls. */
signal_quit ();
}
}
#endif