Gleb Arshinov <gleb(a)broadbase.com> writes in xemacs-beta(a)xemacs.org:
Error is:
file-coding.c
..\src\file-coding.c(5610) : error C2065: 'ucs_to_mule_table' : undeclared ident
ifier
Resynch with CVS (there were commits done in the past hour) and try
this patch:
1999-03-12 SL Baur <steve(a)xemacs.org>
* file-coding.c: Guard ucs table initialization with ifdef MULE.
Index: src/file-coding.c
===================================================================
RCS file: /usr/CVSroot/XEmacs/xemacs/src/file-coding.c,v
retrieving revision 1.7.2.6
diff -u -r1.7.2.6 file-coding.c
--- src/file-coding.c 1999/03/12 10:10:54 1.7.2.6
+++ src/file-coding.c 1999/03/12 10:30:25
@@ -5615,6 +5615,7 @@
coding_category_system[CODING_CATEGORY_NO_CONVERSION] =
Fget_coding_system (Qno_conversion);
+#ifdef MULE
{
unsigned int i;
@@ -5623,4 +5624,5 @@
}
staticpro (&mule_to_ucs_table);
mule_to_ucs_table = Fmake_char_table(Qgeneric);
+#endif /* MULE */
}