[Indic] Increase max syllable length

20 was way too low, one could hit a syllable with 7ish consonants with it.
This commit is contained in:
Behdad Esfahbod 2012-05-10 11:32:52 +02:00
parent a391ff50b9
commit b99d63ae11
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ initial_reordering_consonant_syllable (const hb_ot_map_t *map, hb_buffer_t *buff
info[i].indic_position() = info[i - 1].indic_position(); info[i].indic_position() = info[i - 1].indic_position();
/* We do bubble-sort, skip malicious clusters attempts */ /* We do bubble-sort, skip malicious clusters attempts */
if (end - start < 20) if (end - start < 64)
{ {
/* Sit tight, rock 'n roll! */ /* Sit tight, rock 'n roll! */
hb_bubble_sort (info + start, end - start, compare_indic_order); hb_bubble_sort (info + start, end - start, compare_indic_order);