diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2012-05-11 11:07:40 +0200 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2012-05-11 11:07:40 +0200 |
commit | c6d904d67db589dd6209928e56504f04f6a07756 (patch) | |
tree | 4c852f60a733918f66dc49f820ad4d5dde1fc4ed /src | |
parent | 55fe2cf79b11d9a63ea33b3ee76bd0ebca345157 (diff) |
[Indic] Fix bitops typo!
Another 1000 down!
Diffstat (limited to 'src')
-rw-r--r-- | src/hb-ot-shape-complex-indic.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hb-ot-shape-complex-indic.cc b/src/hb-ot-shape-complex-indic.cc index 4d82e24a..e3f78ce9 100644 --- a/src/hb-ot-shape-complex-indic.cc +++ b/src/hb-ot-shape-complex-indic.cc @@ -411,9 +411,9 @@ initial_reordering_consonant_syllable (const hb_ot_map_t *map, hb_buffer_t *buff * The test suite has been drinking, not me... But disable while * investigating. */ - //info[j].mask &= !mask_array[CJCT]; + //info[j].mask &= ~mask_array[CJCT]; if (non_joiner) - info[j].mask &= !mask_array[HALF]; + info[j].mask &= ~mask_array[HALF]; } while (j > start && !is_consonant (info[j])); } |