File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change
1
+ ifeq ($(OS ) ,Windows_NT)
2
+ EXEC := maketables --tables=all --url=https://www.unicode.org/Public/15.0.0/ucd/ > Tables.cs
3
+ else
4
+ EXEC := ./maketables --tables=all --url=https://www.unicode.org/Public/15.0.0/ucd/ > Tables.cs
5
+ endif
6
+
1
7
tables : unicodeData caseFolding maketables
2
- maketables --tables=all --url=https://www.unicode.org/Public/15.0.0/ucd/ > Tables.cs
8
+ $( EXEC )
3
9
4
10
unicodeData :
5
11
curl -O https://www.unicode.org/Public/15.0.0/ucd/UnicodeData.txt
Original file line number Diff line number Diff line change @@ -8256,7 +8256,7 @@ public static class Property {
8256
8256
/*0x7C */ CharClass . pS | CharClass . pp , // '|'
8257
8257
/*0x7D */ CharClass . pP | CharClass . pp , // '}'
8258
8258
/*0x7E */ CharClass . pS | CharClass . pp , // '~'
8259
- /*0x7F */ CharClass . pC , // '\x7f '
8259
+ /*0x7F */ CharClass . pC , // '\u007f '
8260
8260
/*0x80 */ CharClass . pC , // '\u0080'
8261
8261
/*0x81 */ CharClass . pC , // '\u0081'
8262
8262
/*0x82 */ CharClass . pC , // '\u0082'
You can’t perform that action at this time.
0 commit comments