Core/Unicode: Fix letters category
This commit is contained in:
parent
d91c48ab50
commit
271f7202ed
|
|
@ -157,7 +157,7 @@ namespace Nz
|
||||||
case 'X':
|
case 'X':
|
||||||
case 'Y':
|
case 'Y':
|
||||||
case 'Z':
|
case 'Z':
|
||||||
return Category_Number_DecimalDigit;
|
return Category_Letter_Uppercase;
|
||||||
|
|
||||||
case '_':
|
case '_':
|
||||||
return Category_Punctuation_Connector;
|
return Category_Punctuation_Connector;
|
||||||
|
|
@ -192,7 +192,7 @@ namespace Nz
|
||||||
case 'x':
|
case 'x':
|
||||||
case 'y':
|
case 'y':
|
||||||
case 'z':
|
case 'z':
|
||||||
return Category_Number_DecimalDigit;
|
return Category_Letter_Lowercase;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue