--- code/trunk/pcre_xclass.c 2007/02/24 21:40:45 77 +++ code/trunk/pcre_xclass.c 2007/02/24 21:41:13 85 @@ -60,7 +60,7 @@ Returns: TRUE if character matches, else FALSE */ -EXPORT BOOL +PCRE_EXPORT BOOL _pcre_xclass(int c, const uschar *data) { int t; @@ -102,7 +102,7 @@ { int chartype, othercase; int rqdtype = *data++; - int category = ucp_findchar(c, &chartype, &othercase); + int category = _pcre_ucp_findchar(c, &chartype, &othercase); if (rqdtype >= 128) { if ((rqdtype - 128 == category) == (t == XCL_PROP)) return !negated;