From xemacs-m  Sun Feb 16 13:02:51 1997
Received: from crystal.WonderWorks.COM (crystal.WonderWorks.com [192.203.206.1])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id NAA28211
	for <xemacs-beta@xemacs.org>; Sun, 16 Feb 1997 13:02:49 -0600 (CST)
Received: by crystal.WonderWorks.COM 
	id QQcdei20713; Sun, 16 Feb 1997 14:02:48 -0500 (EST)
Date: Sun, 16 Feb 1997 14:02:48 -0500 (EST)
Message-Id: <QQcdei20713.199702161902@crystal.WonderWorks.COM>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
From: Kyle Jones <kyle_jones@wonderworks.com>
To: xemacs-beta@xemacs.org
Subject: [PATCH] 20.1b1: tab expansion in shell buffers

Depending on what output mode settings ptys default to on your
system, tabs might be expanded in shell buffers.  This patch
fixes the problem here.

*** 1.1	1997/02/16 18:55:26
--- src/sysdep.c	1997/02/16 18:55:44
***************
*** 453,458 ****
--- 453,459 ----
  #ifdef OLCUC
    s.main.c_oflag &= ~OLCUC;	/* Disable upcasing on output.  */
  #endif
+   s.main.c_oflag &= ~TAB3;	/* Disable tab expansion */
  #if defined (CSIZE) && defined (CS8)
    s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */
  #endif

