mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 13:49:39 +02:00
* Fix bug #36478: add array of category names
git-svn-id: trunk@43799 -
This commit is contained in:
parent
0485f59cad
commit
a37cb2d2fa
@ -181,6 +181,41 @@ const
|
|||||||
UGC_PrivateUse = 28;
|
UGC_PrivateUse = 28;
|
||||||
UGC_Unassigned = 29;
|
UGC_Unassigned = 29;
|
||||||
|
|
||||||
|
// Names
|
||||||
|
|
||||||
|
UnicodeCategoryNames: array[0..29] of string[2] = (
|
||||||
|
'Lu',
|
||||||
|
'Ll',
|
||||||
|
'Lt',
|
||||||
|
'Lm',
|
||||||
|
'Lo',
|
||||||
|
'Mn',
|
||||||
|
'Mc',
|
||||||
|
'Me',
|
||||||
|
'Nd',
|
||||||
|
'Nl',
|
||||||
|
'No',
|
||||||
|
'Pc',
|
||||||
|
'Pd',
|
||||||
|
'Ps',
|
||||||
|
'Pe',
|
||||||
|
'Pi',
|
||||||
|
'Pf',
|
||||||
|
'Po',
|
||||||
|
'Sm',
|
||||||
|
'Sc',
|
||||||
|
'Sk',
|
||||||
|
'So',
|
||||||
|
'Zs',
|
||||||
|
'Zl',
|
||||||
|
'Zp',
|
||||||
|
'Cc',
|
||||||
|
'Cf',
|
||||||
|
'Cs',
|
||||||
|
'Co',
|
||||||
|
'Cn'
|
||||||
|
);
|
||||||
|
|
||||||
type
|
type
|
||||||
|
|
||||||
TUInt24Rec = packed record
|
TUInt24Rec = packed record
|
||||||
|
Loading…
Reference in New Issue
Block a user