From 1bfbaadd93756d2596933ce416364162602be985 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Tue, 9 Mar 1999 11:57:13 +0000 Subject: [PATCH] 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] --- terminal.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/terminal.c b/terminal.c index 6df444a3..63403c1a 100644 --- a/terminal.c +++ b/terminal.c @@ -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; } }