1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 09:58:01 +00:00

Removed support for Line Feed/New Line Mode on the grounds that it doesn't

do the same as lfhascr -- it also changes the "return" key to send CR/LF, which
lfhascr doesn't do (and shouldn't do).  Also, Line Feed/New Line mode isn't
meant to affect IND, which lfhascr currently does (but arguably shouldn't).

[originally from svn r82]
This commit is contained in:
Ben Harris 1999-03-09 11:57:13 +00:00
parent b5e2bf461b
commit 1bfbaadd93

View File

@ -556,9 +556,6 @@ static void toggle_mode (int mode, int query, int state) {
case 4: /* set insert mode */
insert = state;
break;
case 20: /* line feed/new line mode */
lfhascr = state;
break;
}
}