diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-02-16 23:43:53 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-02-16 23:43:53 +0000 |
commit | 3b47db3d9e597c7fa9444e9a853c7cc71ccdc715 (patch) | |
tree | 918f0b4f7d37b215a38d7b1b33feb508500af623 | |
parent | ecb9e5d9c01998b5616f4d3bbae449644ace0fbd (diff) | |
download | emacs-3b47db3d9e597c7fa9444e9a853c7cc71ccdc715.tar.gz |
(init_sys_modes): IEXTEN is in c_lflag, not c_iflag.
-rw-r--r-- | src/sysdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |