aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/sysdep.c b/src/sysdep.c
index 194ec0cea50..e696cb3d352 100644
--- a/src/sysdep.c
+++ b/src/sysdep.c
@@ -1168,6 +1168,11 @@ init_sys_modes ()
1168#endif 1168#endif
1169 1169
1170 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode; 1170 tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode;
1171#ifdef ultrix
1172 /* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
1173 anything, and leaving it in breaks the meta key. Go figure. */
1174 tty.lmode &= ~LLITOUT;
1175#endif
1171 1176
1172#ifdef BSD4_1 1177#ifdef BSD4_1
1173 lmode = tty.lmode; 1178 lmode = tty.lmode;