changeset 357:2debdb7c7c86

[project @ 1994-02-11 04:31:40 by jwe]
author jwe
date Fri, 11 Feb 1994 04:31:40 +0000
parents 6675e5cc11d8
children f52ab689669a
files info/terminal.c
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/info/terminal.c	Fri Feb 11 04:26:21 1994 +0000
+++ b/info/terminal.c	Fri Feb 11 04:31:40 1994 +0000
@@ -649,7 +649,11 @@
   ioctl (tty, TCGETA, &original_termio);
   ioctl (tty, TCGETA, &ttybuff);
   ttybuff.c_iflag &= (~ISTRIP & ~INLCR & ~IGNCR & ~ICRNL & ~IXON);
+#if defined (NeXT)
+  ttybuff.c_oflag &= (~ONLCR);
+#else
   ttybuff.c_oflag &= (~ONLCR & ~OCRNL);
+#endif
   ttybuff.c_lflag &= (~ICANON & ~ECHO);
 
   ttybuff.c_cc[VMIN] = 1;