Some time ago, Andy Piper wrote...
Of course I have a feeling I've broken your C++ compile once
again.
* glyphs-msw.c (mswindows_tab_control_update): remove `;' that
was
breaking absolutely everything.
I compiled XEmacs with a C++ compiler yesterday night, and it pointed
me to this bug (":warning: Empty control statement. Is ';' in intended
place?")
Same error is also present somewhere in DND code. Patch follows.
I think that C++ compile is a very good idea.
A question. I have fixed all errors and warnings which C++ compiler gave,
except for conversion errors between char* and unsigned char*. This is
an error in C++:
unsigned char str[20];
strset (str, 'z', 19);
I do not really want to use casts at such places - they certainly do not
improve on readability of the code. Any luck avoiding these?
Big K