changeset 3759:036367460955

* sysdep.c [ultrix] (init_sys_modes): Don't set LLITOUT; it disables the meta key.
author Jim Blandy <jimb@redhat.com>
date Wed, 16 Jun 1993 20:02:58 +0000
parents e212a0863773
children e0be9df19ee1
files src/sysdep.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/sysdep.c	Wed Jun 16 19:34:11 1993 +0000
+++ b/src/sysdep.c	Wed Jun 16 20:02:58 1993 +0000
@@ -1168,6 +1168,11 @@
 #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;