Clear ICRNL and INLCR. From Daiki Ueno <ueno@unixuser.org>.
+2001-10-08 Gerd Moellmann <gerd@gnu.org>
+
+ * sysdep.c (child_setup_tty) [HAVE_TERMIO || HAVE_TERMIOS]:
+ Clear ICRNL and INLCR. From Daiki Ueno <ueno@unixuser.org>.
+
2001-10-08 Pavel Jan\e,Bm\e(Bk <Pavel@Janik.cz>
* keyboard.c: Don't define min/max.
#endif
s.main.c_lflag &= ~ECHO; /* Disable echo */
s.main.c_lflag |= ISIG; /* Enable signals */
+ s.main.c_iflag &= ~ICRNL; /* Disable map of CR to NL on input */
+#ifdef INLCR /* Just being cautious, since I can't check how
+ widespread INLCR is--rms. */
+ s.main.c_iflag &= ~INLCR; /* Disable map of NL to CR on input */
+#endif
#ifdef IUCLC
s.main.c_iflag &= ~IUCLC; /* Disable downcasing on input. */
#endif