1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-07 06:22: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

@ -73,6 +73,12 @@ void ldisc_send(char *buf, int len, int interactive)
ldisc_update(ECHOING, EDITING);
return;
}
/*
* Notify the front end that something was pressed, in case
* it's depending on finding out (e.g. keypress termination for
* Close On Exit).
*/
frontend_keypress();
/*
* Less than zero means null terminated special string.
*/