From d1aa143ca434fe272de21d2002768c83387b583b Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 15 Nov 2012 15:38:08 -0800 Subject: [PATCH] [Thai] Remove U+0E2C from "AC" consonants WinXP doesn't include it. --- src/hb-ot-shape-complex-thai.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hb-ot-shape-complex-thai.cc b/src/hb-ot-shape-complex-thai.cc index 87fe5219f..076089181 100644 --- a/src/hb-ot-shape-complex-thai.cc +++ b/src/hb-ot-shape-complex-thai.cc @@ -46,7 +46,7 @@ enum thai_consonant_type_t static thai_consonant_type_t get_consonant_type (hb_codepoint_t u) { - if (u == 0x0E1B || u == 0x0E1D || u == 0x0E1F || u == 0x0E2C) + if (u == 0x0E1B || u == 0x0E1D || u == 0x0E1F/* || u == 0x0E2C*/) return AC; if (u == 0x0E0D || u == 0x0E10) return RC;