From 210df5b10c855161149dd7a1e88f610972f2afaa Mon Sep 17 00:00:00 2001 From: Garrett Wollman Date: Tue, 11 Oct 1994 00:16:28 +0000 Subject: [PATCH] Turn off OXTABS by default. Inspection of systems here finds no commercial systems with it on by default (or the equivalent flag) and terminal control sequences confuse it greatly. (Try running `ls' under bash in an XTerm, for instance.) --- sys/sys/ttydefaults.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/sys/ttydefaults.h b/sys/sys/ttydefaults.h index 192f61c597f..b110389a401 100644 --- a/sys/sys/ttydefaults.h +++ b/sys/sys/ttydefaults.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)ttydefaults.h 8.4 (Berkeley) 1/21/94 - * $Id: ttydefaults.h,v 1.4 1994/08/21 19:13:08 paul Exp $ + * $Id: ttydefaults.h,v 1.5 1994/09/22 19:51:43 ache Exp $ */ /* @@ -49,7 +49,7 @@ * Defaults on "first" open. */ #define TTYDEF_IFLAG (BRKINT | ICRNL | IMAXBEL | IXON | IXANY) -#define TTYDEF_OFLAG (OPOST | ONLCR | OXTABS) +#define TTYDEF_OFLAG (OPOST | ONLCR) #define TTYDEF_LFLAG (ECHO | ICANON | ISIG | IEXTEN | ECHOE|ECHOKE|ECHOCTL) #define TTYDEF_CFLAG (CREAD | CS8 | HUPCL) #define TTYDEF_SPEED (B9600)