]> git.eshelyaron.com Git - emacs.git/commitdiff
(ctrl_c_handler): Ignore CTRL_BREAK_EVENT signals.
authorRichard M. Stallman <rms@gnu.org>
Tue, 20 Jun 1995 14:58:38 +0000 (14:58 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 20 Jun 1995 14:58:38 +0000 (14:58 +0000)
src/w32console.c

index 037c21e3038bd7afaeefbfeeb1b712b2be51feba..10190beaa93a96d832ae19a6aca38a9781632683 100644 (file)
@@ -82,11 +82,13 @@ HANDLE  keyboard_handle;
 
 
 /* Setting this as the ctrl handler prevents emacs from being killed when
- * someone hits ^C in a 'suspended' session (child shell).  */
+   someone hits ^C in a 'suspended' session (child shell).
+   Also ignore Ctrl-Break signals.  */
+
 BOOL
 ctrl_c_handler (unsigned long type)
 {
-  return (type == CTRL_C_EVENT) ? TRUE : FALSE;
+  return (type == CTRL_C_EVENT || type == CTRL_BREAK_EVENT);
 }
 
 /* If we're updating a frame, use it as the current frame