[662] in testers
emacs focus bug
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Fri May 11 01:51:20 1990
From: qjb@ATHENA.MIT.EDU
Date: Fri, 11 May 90 01:51:01 -0400
To: testers@ATHENA.MIT.EDU
In-Reply-To: [0661] in testers meeting
I don't know how to fix it, but the relevant section from the
sources seems to be in the file
/afs/rel-eng/project/release/7.0/source/.../emacs.18.54/src/x11term.c
lines 1337 to 1365:
/* case FocusIn:
CursorToggle ();
CursorOutline = 0;
CursorToggle ();
break;
case FocusOut:
CursorToggle ();
CursorOutline = 1;
CursorToggle ();
break;*/
case EnterNotify:
/* if (event->xcrossing.detail != NotifyInferior &&
event->xcrossing.focus) {*/
CursorToggle ();
CursorOutline = 0;
CursorToggle ();
/* }*/
break;
case LeaveNotify:
/* if (!event->xcrossing.focus) {*/
CursorToggle ();
CursorOutline = 1;
CursorToggle ();
/* }*/
break;
Obviously someone doesn't know how to do this.
Jay