Skip to content

Commit 567e7e3

Browse files
committed
Add new shaping category
1 parent 23ee847 commit 567e7e3

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

unicodetools/org/unicode/text/UCD/MakeUnicodeFiles.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Generate: .
22
CopyrightYear: 2021
3-
DeltaVersion: 12
3+
DeltaVersion: 13
44

55
File: extra/ScriptNfkc
66
Property: SPECIAL

unicodetools/org/unicode/text/UCD/UCD_Names.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1095,7 +1095,8 @@ public final class UCD_Names implements UCD_Types {
10951095
"Hanifi_Rohingya_Pa",
10961096
"Hanifi_Rohingya_Kinna_Ya",
10971097
// Unicode 14
1098-
"THIN_YEH"
1098+
"THIN_YEH",
1099+
"VERTICAL TAIL"
10991100
};
11001101
static {
11011102
fixArray(JOINING_GROUP);

unicodetools/org/unicode/text/UCD/UCD_Types.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,8 +749,9 @@ public interface UCD_Types {
749749
Hanifi_Rohingya_Kinna_Ya = 102,
750750
// Unicode 14
751751
THIN_YEH = 103,
752+
VERTICAL_TAIL = 104,
752753
// limit
753-
LIMIT_JOINING_GROUP = THIN_YEH + 1;
754+
LIMIT_JOINING_GROUP = VERTICAL_TAIL + 1;
754755

755756
static final byte NFD = 0, NFC = 1, NFKD = 2, NFKC = 3;
756757
public static final int

0 commit comments

Comments
 (0)