* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it

disables the meta key.
This commit is contained in:
Jim Blandy 1993-06-16 20:02:58 +00:00
parent 78e367e9ae
commit 37fd7901b2

View file

@ -1168,6 +1168,11 @@ init_sys_modes ()
#endif
tty.lmode = LDECCTQ | LLITOUT | LPASS8 | LNOFLSH | old_tty.lmode;
#ifdef ultrix
/* Under Ultrix 4.2a, leaving this out doesn't seem to hurt
anything, and leaving it in breaks the meta key. Go figure. */
tty.lmode &= ~LLITOUT;
#endif
#ifdef BSD4_1
lmode = tty.lmode;