aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1993-06-16 20:02:58 +0000
committerJim Blandy1993-06-16 20:02:58 +0000
commit37fd7901b2e694e07267ef6999875fb31fed70ad (patch)
treec441336767dd001f0be18a7063270b31473176cc
parent78e367e9aebaf66cb2addfa1cb9487c647215a89 (diff)
downloademacs-37fd7901b2e694e07267ef6999875fb31fed70ad.tar.gz
emacs-37fd7901b2e694e07267ef6999875fb31fed70ad.zip
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
disables the meta key.
-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;