Path: utzoo!utgpu!watmath!uunet!tut.cis.ohio-state.edu!FLOTSAM.MIT.EDU!danapple From: danapple@FLOTSAM.MIT.EDU (Daniel I. Applebaum) Newsgroups: gnu.emacs.bug Subject: outline cursor bug Message-ID: <8901090557.AA00648@FLOTSAM.MIT.EDU> Date: 9 Jan 89 05:57:51 GMT Sender: daemon@tut.cis.ohio-state.edu Distribution: gnu Organization: GNUs Not Usenet Lines: 29 There is a bug in version 18.52 of GNU emacs which causes incorrect display of the outline version of the cursor. When the mouse is moved out of the emacs window, the text cursor is supposed to be redisplayed as an outline. Unfortunately the Graphics Context for this redisplay is not initialized correctly so the outline is made of zero width line segments. (On Parallax displays, this has a horrible result.) The diffs for 18.52 follow: % diff x11term.c.fixed x11term.c.orig 2313d2312 < XXgcv.line_width = 1; 2318c2317 < GCFont|GCForeground|GCBackground|GCLineWidth, - --- > GCFont|GCForeground|GCBackground, 2323c2322 < GCFont|GCForeground|GCBackground|GCLineWidth, - --- > GCFont|GCForeground|GCBackground, 2328c2327 < GCFont|GCForeground|GCBackground|GCLineWidth, - --- > GCFont|GCForeground|GCBackground, -- --------------------------- Dan.