[Thai] Remove U+0E2C from "AC" consonants

WinXP doesn't include it.
This commit is contained in:
Behdad Esfahbod 2012-11-15 15:38:08 -08:00
parent 362a990b22
commit d1aa143ca4
1 changed files with 1 additions and 1 deletions

View File

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