mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-23 05:17:35 +00:00
* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it
disables the meta key.
This commit is contained in:
parent
78e367e9ae
commit
37fd7901b2
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue