Mercurial > emacs
changeset 14390:d16ba81e278a
(child_setup_tty): Turn off ISTRIP to pass 8bit. Turn off TAB3 so
don't expand tabs.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 27 Jan 1996 08:22:36 +0000 |
parents | f349b035e009 |
children | dfdf939f3e8c |
files | src/sysdep.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/sysdep.c Sat Jan 27 03:07:04 1996 +0000 +++ b/src/sysdep.c Sat Jan 27 08:22:36 1996 +0000 @@ -522,9 +522,13 @@ #ifdef IUCLC s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */ #endif +#ifdef ISTRIP + s.main.c_iflag &= ~ISTRIP; /* don't strip 8th bit on input */ +#endif #ifdef OLCUC s.main.c_oflag &= ~OLCUC; /* Disable upcasing on output. */ #endif + s.main.c_oflag &= ~TAB3; /* Disable tab expansion */ s.main.c_cflag = (s.main.c_cflag & ~CSIZE) | CS8; /* Don't strip 8th bit */ #if 0 /* Said to be unnecessary: */