Xref: utzoo comp.windows.x:7113 comp.sys.ibm.pc.rt:248 Path: utzoo!utgpu!attcan!uunet!mcvax!cernvax!pan!jw From: jw@pan.UUCP (Jamie Watson) Newsgroups: comp.windows.x,comp.sys.ibm.pc.rt Subject: Bug in twm Message-ID: <506@pan.UUCP> Date: 5 Jan 89 20:34:48 GMT Reply-To: jw@pan.UUCP (Jamie Watson) Organization: Adasoft AG, Solothurn, Switzerland Lines: 29 The "aixterm" distributed with IBM's implementation of X for AIX led me to a bug in the latest (5.0 ... or 1.2) version of twm - the version on the X.V11R3 contrib1 tape. The aixterm icon will react to any mouse button hit by de-iconifying. Except, with twm it reacts by disappearing entirely. The problem is in events.c; the sense of a test is inverted. *** events.old Thu Jan 5 21:33:20 1989 --- events.c Sat Dec 31 09:20:55 1988 *************** *** 716,722 **** else { #ifndef ICCCM ! if (!tmp_win->icon) { #endif DeIconify(tmp_win); --- 716,722 ---- else { #ifndef ICCCM ! if (tmp_win->icon) { #endif DeIconify(tmp_win);