Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!utgpu!water!watnot!watmath!clyde!rutgers!mit-eddie!genrad!decvax!ucbvax!jade!violet.berkeley.edu!mwm From: mwm@violet.berkeley.edu.UUCP Newsgroups: comp.sys.amiga Subject: Boldface bug in DBW vt100 2.4 Message-ID: <2611@jade.BERKELEY.EDU> Date: Wed, 25-Feb-87 00:10:27 EST Article-I.D.: jade.2611 Posted: Wed Feb 25 00:10:27 1987 Date-Received: Fri, 27-Feb-87 07:01:14 EST Sender: usenet@jade.BERKELEY.EDU Reply-To: mwm@violet.berkeley.edu(Mike Meyer) Organization: University of California, Berkeley Lines: 24 Having finally gotten more memory again, I went back to interlaced workbench.* Gee, the vt100 emulator changed the color of my emacs mode line. The culprits appear to be the two lines in window.c that say: SetAPen(mywindow->RPort,(long)(2+(1^p_screen))); I'm not sure what the 1^p_screen is supposed to be doing, but it looks like its trying to ensure that things have the right depth. The obvious fix appears to be to make the line: SetAPen(mywindow->RPort,(long)(2+(1^(p_depth-1)))); At least, it gives me back my dark green mode line (as opposed to blood red. Yuch.) Anyone know what really should be going on here?