mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 04:22:31 +02:00
* Fix bug #36478: add array of category names
git-svn-id: trunk@43799 -
This commit is contained in:
parent
0485f59cad
commit
a37cb2d2fa
@ -180,6 +180,41 @@ const
|
||||
UGC_Surrogate = 27;
|
||||
UGC_PrivateUse = 28;
|
||||
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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user