ICU-1707 add FDD0..FDEF to the noncharacters

X-SVN-Rev: 7662
This commit is contained in:
Yves Arrouye 2002-02-14 17:48:15 +00:00
parent b2d0d78e37
commit 24679d28bf

View File

@ -1295,7 +1295,7 @@ findNameDummy(void *context,
static uint8_t getCharCat(UChar32 cp) {
uint8_t cat;
if ((cp & 0xFFFE) == 0xFFFE) {
if ((cp & 0xFFFE) == 0xFFFE || (cp >= 0xFDD0 && cp <= 0xFDEF)) {
return U_NONCHARACTER_CODE_POINT;
}