Xref: utzoo comp.sys.apollo:1601 comp.windows.x:6177 Path: utzoo!attcan!uunet!husc6!rutgers!ucla-cs!admin.cognet.ucla.edu!casey From: casey@admin.cognet.ucla.edu (Casey Leedom) Newsgroups: comp.sys.apollo,comp.windows.x Subject: Re: X11R3 under Apollo SR10.0 Message-ID: <17963@shemp.CS.UCLA.EDU> Date: 16 Nov 88 01:36:45 GMT References: <17940@shemp.CS.UCLA.EDU> <17957@shemp.CS.UCLA.EDU> Sender: news@CS.UCLA.EDU Reply-To: casey@admin.cognet.ucla.edu.UUCP (Casey Leedom) Organization: UCLA Cognitive Science Program Lines: 34 In my R3/xterm, SR10/Apollo fix earlier today I included the first part of a fix to get xterm to keep track of its reverse video status properly: *** clients/xterm/main.c-dist Wed Nov 9 13:01:20 1988 --- clients/xterm/main.c Tue Nov 15 14:09:17 1988 *************** *** 719,724 **** --- 719,725 ---- term->flags |= AUTOREPEAT; #endif /* DO_AUTOREPEAT */ if (!screen->jumpscroll) term->flags |= SMOOTHSCROLL; + if (term->misc.re_verse) term->flags |= REVERSE_VIDEO; if (term->misc.reverseWrap) term->flags |= REVERSEWRAP; inhibit = 0; I forgot to include the other part, sorry. Casey ----- *** charproc.c-dist Sat Oct 15 13:30:08 1988 --- charproc.c Tue Nov 15 17:23:10 1988 *************** *** 2652,2657 **** --- 2652,2658 ---- break; case MMENU_VIDEO: + term->flags ^= REVERSE_VIDEO; ReverseVideo(term); break;