mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-14 13:09:22 +02:00
Remove Unicode $180E (Mongolian Vowel Separator), as it is not anymore a whitespace character
git-svn-id: trunk@40600 -
(cherry picked from commit e9e5b05caa
)
This commit is contained in:
parent
7c40f1f48c
commit
ac28b5ad05
@ -77,7 +77,13 @@ var
|
|||||||
uc : UnicodeChar;
|
uc : UnicodeChar;
|
||||||
begin
|
begin
|
||||||
e := 1;
|
e := 1;
|
||||||
CheckItems([$0020,$1680,$180E],True,e);
|
{ According to:
|
||||||
|
https://en.wikipedia.org/wiki/Unicode_character_property
|
||||||
|
Unicode char $180E, Mongolian Vowel Separator
|
||||||
|
was considered as a space separator but is
|
||||||
|
in the Other,Format category since Unicode version 6.3.0
|
||||||
|
thus $180E is removed here. }
|
||||||
|
CheckItems([$0020,$1680],True,e);
|
||||||
CheckItems($2000,$200A,True,e);
|
CheckItems($2000,$200A,True,e);
|
||||||
CheckItems([$202F,$205F,$3000],True,e);
|
CheckItems([$202F,$205F,$3000],True,e);
|
||||||
CheckItems([$2028,$2029],True,e);
|
CheckItems([$2028,$2029],True,e);
|
||||||
|
Loading…
Reference in New Issue
Block a user