Remove tab character like other "zero-width" characters

Uniscribe does that, this make comparing results to Uniscribe
easier.
This commit is contained in:
Behdad Esfahbod 2012-06-01 13:46:26 -04:00
parent cd6a549341
commit 96a9ef0c9f
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}