Fix bug in utf8_isNmstrt2

This commit is contained in:
James Clark 1998-06-26 14:57:49 +00:00
parent 75405cf655
commit 2844be94b7

View file

@ -101,7 +101,7 @@ int utf8_isName3(const ENCODING *enc, const char *p)
static
int utf8_isNmstrt2(const ENCODING *enc, const char *p)
{
return UTF8_GET_NAMING2(namePages, (const unsigned char *)p);
return UTF8_GET_NAMING2(nmstrtPages, (const unsigned char *)p);
}
static