changeset 40932:103ddc9d157a

(child_setup_tty): Don't clear ICRNL or INLCR.
author Richard M. Stallman <rms@gnu.org>
date Sun, 11 Nov 2001 20:11:14 +0000
parents 50b111aed6d5
children 29830f44be6a
files src/sysdep.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Sun Nov 11 20:10:28 2001 +0000
+++ b/src/sysdep.c	Sun Nov 11 20:11:14 2001 +0000
@@ -588,11 +588,13 @@
 #endif
   s.main.c_lflag &= ~ECHO;	/* Disable echo */
   s.main.c_lflag |= ISIG;	/* Enable signals */
+#if 0
   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
+#endif
 #ifdef IUCLC
   s.main.c_iflag &= ~IUCLC;	/* Disable downcasing on input.  */
 #endif