mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 22:15:04 +00:00
Remove tab character like other "zero-width" characters
Uniscribe does that, this make comparing results to Uniscribe easier.
This commit is contained in:
parent
cd6a549341
commit
96a9ef0c9f
1 changed files with 2 additions and 1 deletions
|
@ -149,7 +149,8 @@ _hb_unicode_is_zero_width (hb_codepoint_t ch)
|
|||
(ch >= 0x202A && ch <= 0x202E) ||
|
||||
(ch >= 0x2060 && ch <= 0x2063) ||
|
||||
(ch == 0x2028)
|
||||
)) || unlikely (ch == 0x00AD
|
||||
)) || unlikely (ch == 0x0009
|
||||
|| ch == 0x00AD
|
||||
|| ch == 0x034F
|
||||
|| ch == 0xFEFF);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue