diff options
author | Eli Zaretskii <eliz@gnu.org> | 2016-09-05 19:50:59 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2016-09-05 19:50:59 +0300 |
commit | cfaf18a27c262694750400005e882f1cfc7ff2b0 (patch) | |
tree | cf5b3cb11a3dd8ba29f63d64163f5cdae7bd47b6 /src/keyboard.c | |
parent | 62e4dc4660cb3b29cfffcad0639e51c7f382ced8 (diff) | |
download | emacs-cfaf18a27c262694750400005e882f1cfc7ff2b0.tar.gz emacs-cfaf18a27c262694750400005e882f1cfc7ff2b0.tar.bz2 emacs-cfaf18a27c262694750400005e882f1cfc7ff2b0.zip |
Treat SIGINT correctly in GUI sessions on MS-Windows
* src/w32proc.c (sys_signal): Don't reject SIGINT, as it is
supported by MS runtime.
* src/term.c (DEV_TTY): Move from here ...
* src/conf_post.h (DEV_TTY): ... to here. Separate definitions
for WINDOWSNT and for the rest.
* src/keyboard.c (handle_interrupt_signal): Use DEV_TTY instead of
a literal "/dev/tty".
* etc/NEWS: Mention the behavior change.
Diffstat (limited to 'src/keyboard.c')
-rw-r--r-- | src/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/keyboard.c b/src/keyboard.c index e44155260f8..3ef797c11c3 100644 --- a/src/keyboard.c +++ b/src/keyboard.c @@ -10241,7 +10241,7 @@ static void handle_interrupt_signal (int sig) { /* See if we have an active terminal on our controlling tty. */ - struct terminal *terminal = get_named_terminal ("/dev/tty"); + struct terminal *terminal = get_named_terminal (DEV_TTY); if (!terminal) { /* If there are no frames there, let's pretend that we are a |