# HG changeset patch # User jwe # Date 760941100 0 # Node ID 2debdb7c7c86a5d3cc31a851d163578477131d39 # Parent 6675e5cc11d8fdd769d3aa160be880dc40e31b77 [project @ 1994-02-11 04:31:40 by jwe] diff --git a/info/terminal.c b/info/terminal.c --- a/info/terminal.c +++ b/info/terminal.c @@ -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;