From 8979a7f6f2b44ade4c0198a31ae08561b35ce009 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 24 Jul 2012 17:03:55 -0400 Subject: [PATCH] [Mongolian] Remove Mongolian Vowel Separator at the end of shaping Results match Uniscribe now. --- src/hb-unicode-private.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/hb-unicode-private.hh b/src/hb-unicode-private.hh index c781035aa..fd333872d 100644 --- a/src/hb-unicode-private.hh +++ b/src/hb-unicode-private.hh @@ -121,6 +121,8 @@ _hb_unicode_is_variation_selector (hb_codepoint_t unicode) * 00AD SOFT HYPHEN * 034F COMBINING GRAPHEME JOINER * + * 180E MONGOLIAN VOWEL SEPARATOR + * * 200B ZERO WIDTH SPACE * 200C ZERO WIDTH NON-JOINER * 200D ZERO WIDTH JOINER @@ -153,6 +155,7 @@ _hb_unicode_is_zero_width (hb_codepoint_t ch) )) || unlikely (ch == 0x0009 || ch == 0x00AD || ch == 0x034F + || ch == 0x180E || ch == 0xFEFF); }