diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2013-02-12 15:26:45 -0500 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2013-02-12 15:26:45 -0500 |
commit | bab02d339f39ed5168daaef9461227f78e596a2f (patch) | |
tree | eee344451d234883896394df0a93a6849c96cf49 /src/hb-ot-shape-complex-myanmar.cc | |
parent | 3a83d33ec0b1be6f5992816ff5ebb0f43c8dff00 (diff) |
Rename HB_OT_INDIC_OPTIONS env var to HB_OPTIONS
The Myanmar shaper now respects the uniscribe-bug-compatibility
option too.
Diffstat (limited to 'src/hb-ot-shape-complex-myanmar.cc')
-rw-r--r-- | src/hb-ot-shape-complex-myanmar.cc | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/hb-ot-shape-complex-myanmar.cc b/src/hb-ot-shape-complex-myanmar.cc index 27a656df..8c7697fc 100644 --- a/src/hb-ot-shape-complex-myanmar.cc +++ b/src/hb-ot-shape-complex-myanmar.cc @@ -128,12 +128,9 @@ override_features_myanmar (hb_ot_shape_planner_t *plan) * Windows 8 has lookups for it. But testing suggests that * Windows 8 Uniscribe is NOT applying it. It *is* applying * 'mkmk' however. - * - * We want to apply it, since that's the right thing to do. */ -#if 0 - plan->map.add_feature (HB_TAG('m','a','r','k'), 0, true); -#endif + if (hb_options ().uniscribe_bug_compatible) + plan->map.add_feature (HB_TAG('m','a','r','k'), 0, true); } |