From: Richard M. Stallman Date: Wed, 16 Feb 1994 23:43:53 +0000 (+0000) Subject: (init_sys_modes): IEXTEN is in c_lflag, not c_iflag. X-Git-Tag: emacs-19.34~9892 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b26bc18b9e7ac9ac160201c3021208c20ef91cf6;p=emacs.git (init_sys_modes): IEXTEN is in c_lflag, not c_iflag. --- diff --git a/src/sysdep.c b/src/sysdep.c index 0f49fcc6fa4..7953b41dbd0 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -1131,7 +1131,7 @@ init_sys_modes () 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)