Mercurial > emacs
changeset 22078:f4099a0f3575
(w32_wnd_proc): Call signal_quit when C-g is received.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 15 May 1998 20:53:53 +0000 |
parents | ae5e3b23c7e2 |
children | b7a2370ee82d |
files | src/w32fns.c |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/w32fns.c Fri May 15 20:53:39 1998 +0000 +++ b/src/w32fns.c Fri May 15 20:53:53 1998 +0000 @@ -3408,7 +3408,10 @@ /* 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