diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2018-10-02 17:46:27 +0200 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2018-10-02 17:46:27 +0200 |
commit | 6f457f8370de5d96452ee3a2d1b0a97b025ef1d1 (patch) | |
tree | 72979e14fedd2528878293b004444682fffc06a7 /src/hb-ot-shape-complex-indic-machine.rl | |
parent | d992982d23ef0c39ea42595ed0e8a4752977d1a5 (diff) |
[indic] Minor flip grammar around
No behavior change.
Diffstat (limited to 'src/hb-ot-shape-complex-indic-machine.rl')
-rw-r--r-- | src/hb-ot-shape-complex-indic-machine.rl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hb-ot-shape-complex-indic-machine.rl b/src/hb-ot-shape-complex-indic-machine.rl index bf5c1c8d..455938e9 100644 --- a/src/hb-ot-shape-complex-indic-machine.rl +++ b/src/hb-ot-shape-complex-indic-machine.rl @@ -70,7 +70,7 @@ final_halant_group = halant_group | H.ZWNJ; halant_or_matra_group = (final_halant_group | matra_group{0,4}); -consonant_syllable = (Repha|CS)? (cn.halant_group){0,4} cn halant_or_matra_group syllable_tail; +consonant_syllable = (Repha|CS)? cn (halant_group.cn){0,4} halant_or_matra_group syllable_tail; vowel_syllable = reph? V.n? (ZWJ | (halant_group.cn){0,4} halant_or_matra_group syllable_tail); standalone_cluster = ((Repha|CS)? PLACEHOLDER | reph? DOTTEDCIRCLE).n? (halant_group.cn){0,4} halant_or_matra_group syllable_tail; symbol_cluster = symbol syllable_tail; |