Skip to content

Commit 681593e

Browse files
committed
Fix name-start-char typo
1 parent fd6f6b6 commit 681593e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

icu4c/source/i18n/messageformat2_parser.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,8 @@ UnicodeSet* initNameStartChars(UErrorCode& status) {
193193
result->add(0x00F8, 0x02FF);
194194
result->add(0x0370, 0x037D);
195195
result->add(0x037F, 0x061B);
196-
result->add(0x061D, 0x200D);
196+
result->add(0x061D, 0x1FFF);
197+
result->add(0x200C, 0x200D);
197198
result->add(0x2070, 0x218F);
198199
result->add(0x2C00, 0x2FEF);
199200
result->add(0x3001, 0xD7FF);

0 commit comments

Comments
 (0)