1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-06 22:12:47 -05:00

Oops - repercussions of the close-on-exit stuff which I forgot to

check in. I must stop doing my Unix checkins in the Unix subdir :-(

[originally from svn r2125]
This commit is contained in:
Simon Tatham
2002-10-24 14:12:55 +00:00
parent c0a3c62f6a
commit 6e549a6db3
3 changed files with 18 additions and 0 deletions

View File

@ -4553,3 +4553,14 @@ void flip_full_screen()
ShowWindow(hwnd, SW_MAXIMIZE);
}
}
void frontend_keypress(void)
{
/*
* Keypress termination in non-Close-On-Exit mode is not
* currently supported in PuTTY proper, because the window
* always has a perfectly good Close button anyway. So we do
* nothing here.
*/
return;
}