Compile
authordownsj <downsj@openbsd.org>
Sun, 15 Dec 1996 22:33:56 +0000 (22:33 +0000)
committerdownsj <downsj@openbsd.org>
Sun, 15 Dec 1996 22:33:56 +0000 (22:33 +0000)
gnu/usr.bin/texinfo/info/terminal.c

index 9c10176..1669f56 100644 (file)
@@ -637,7 +637,11 @@ terminal_prep_terminal ()
 
 #if defined (HAVE_TERMIOS_H) || defined (HAVE_TERMIO_H)
   ttybuff.c_iflag &= (~ISTRIP & ~INLCR & ~IGNCR & ~ICRNL & ~IXON);
+#if defined(OCRNL)
   ttybuff.c_oflag &= (~ONLCR & ~OCRNL);
+#else
+  ttybuff.c_oflag &= ~ONLCR;
+#endif
   ttybuff.c_lflag &= (~ICANON & ~ECHO);
 
   ttybuff.c_cc[VMIN] = 1;