Adrian Aichner <aichner(a)ecf.teradyne.com> writes:
Once again I get:
..\src\toolbar-msw.c(212) : error C2088: '+' : illegal for union
NMAKE : fatal error U1077: 'cl' : return code '0x2'
Does this patch help:
Index: src/toolbar-msw.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/src/toolbar-msw.c,v
retrieving revision 1.13.2.2
diff -u -r1.13.2.2 toolbar-msw.c
--- toolbar-msw.c 1999/04/09 17:39:22 1.13.2.2
+++ toolbar-msw.c 1999/05/15 03:21:07
@@ -209,7 +209,7 @@
internal_hash (get_toolbar_button_glyph(w, tb), 0),
internal_hash (tb->callback, 0),
width,
- w->toolbar_buttons_captioned_p);
+ internal_hash (w->toolbar_buttons_captioned_p));
button = tb->next;
nbuttons++;
}