]> git.eshelyaron.com Git - emacs.git/commitdiff
(child_setup_tty) [HAVE_TERMIO || HAVE_TERMIOS]:
authorGerd Moellmann <gerd@gnu.org>
Mon, 8 Oct 2001 08:59:50 +0000 (08:59 +0000)
committerGerd Moellmann <gerd@gnu.org>
Mon, 8 Oct 2001 08:59:50 +0000 (08:59 +0000)
Clear ICRNL and INLCR.  From Daiki Ueno <ueno@unixuser.org>.

src/ChangeLog
src/sysdep.c

index c4030bffbb67be67bb62fd93b752428dc3be0c62..526ec3146e6342828e51bb267e67e63ea46661a8 100644 (file)
@@ -1,3 +1,8 @@
+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.
index ba68a9d4e937779faf52f0aa83b8bd03d4c2469f..e0def2027a5b5c8cc661aacf15ad0cfe567079db 100644 (file)
@@ -588,6 +588,11 @@ child_setup_tty (out)
 #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