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:
pierre 2018-12-20 21:30:44 +00:00 committed by florian
parent 7c40f1f48c
commit ac28b5ad05

View File

@ -77,7 +77,13 @@ var
uc : UnicodeChar;
begin
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([$202F,$205F,$3000],True,e);
CheckItems([$2028,$2029],True,e);