changeset 5960:ce4b18e394a2

(init_sys_modes): IEXTEN is in c_lflag, not c_iflag.
author Richard M. Stallman <rms@gnu.org>
date Wed, 16 Feb 1994 23:43:53 +0000
parents e4337a7bbe32
children bd2a637f1b30
files src/sysdep.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Wed Feb 16 20:53:00 1994 +0000
+++ b/src/sysdep.c	Wed Feb 16 23:43:53 1994 +0000
@@ -1131,7 +1131,7 @@
       tty.main.c_lflag &= ~ECHO;	/* Disable echo */
       tty.main.c_lflag &= ~ICANON;	/* Disable erase/kill processing */
 #ifdef IEXTEN
-      tty.main.c_iflag &= ~IEXTEN;	/* Disable other editing characters.  */
+      tty.main.c_lflag &= ~IEXTEN;	/* Disable other editing characters.  */
 #endif
       tty.main.c_lflag |= ISIG;	/* Enable signals */
       if (flow_control)