We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62f8708 commit 7b727f4Copy full SHA for 7b727f4
unicodetools/src/main/java/org/unicode/text/UCD/ToolUnicodePropertySource.java
@@ -2241,6 +2241,15 @@ public String getAge(int codePoint) {
2241
break;
2242
}
2243
if (ucdCache[i].isAllocated(codePoint)) {
2244
+ if (i == UCD_Types.AGE11 && !ucdCache[i + 1].isAllocated(codePoint)) {
2245
+ // Deallocations in Unicode 2.
2246
+ continue;
2247
+ }
2248
+ return UCD_Names.LONG_AGE[i];
2249
+ } else if (i == UCD_Types.AGE11
2250
+ && ((codePoint >= 0xE000 && codePoint <= 0xF8FF)
2251
+ || (codePoint >= 0xF900 && codePoint <= 0xFA2D))) {
2252
+ // Private use and CJK compatibility ideographs, not overt in UnicodeData 1.1.5.
2253
return UCD_Names.LONG_AGE[i];
2254
2255
0 commit comments