Index: lwlib-Xm.c =================================================================== RCS file: /users/darrylo/.repository/xemacs-21.4/lwlib/lwlib-Xm.c,v retrieving revision 1.1.1.1 diff -c -c -r1.1.1.1 lwlib-Xm.c *** lwlib-Xm.c 2001/10/01 21:27:21 1.1.1.1 --- lwlib-Xm.c 2001/10/02 01:36:04 *************** *** 208,220 **** XmString name_string = NULL; Arg al [20]; int ac = 0; ! int type; /* Don't clobber pixmap types. */ XtSetArg (al [0], XmNlabelType, &type); XtGetValues (widget, al, 1); ! if (type == XmPIXMAP) return; if (val->value) --- 208,220 ---- XmString name_string = NULL; Arg al [20]; int ac = 0; ! int type = 0; /* type == 0 is undefined, and not used by Motif */ /* Don't clobber pixmap types. */ XtSetArg (al [0], XmNlabelType, &type); XtGetValues (widget, al, 1); ! if (type == XmPIXMAP || type == 0) return; if (val->value)