# HG changeset patch # User jwe # Date 760940781 0 # Node ID 6675e5cc11d8fdd769d3aa160be880dc40e31b77 # Parent 1752b1ef8bac2bbf6795b6de8b139b06e97a28c5 [project @ 1994-02-11 04:26:21 by jwe] diff --git a/info/terminal.c b/info/terminal.c --- a/info/terminal.c +++ b/info/terminal.c @@ -627,9 +627,12 @@ tcgetattr (tty, &original_termios); tcgetattr (tty, &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; ttybuff.c_cc[VTIME] = 0;