提交 d3637edb 编写于 作者: B Behdad Esfahbod

[Indic] Don't return for long syllables. Just not sort.

上级 dfa0cade
......@@ -363,11 +363,9 @@ initial_reordering_consonant_syllable (const hb_ot_map_t *map, hb_buffer_t *buff
info[i].indic_position() = info[i - 1].indic_position();
/* We do bubble-sort, skip malicious clusters attempts */
if (end - start > 20)
return;
/* Sit tight, rock 'n roll! */
hb_bubble_sort (info + start, end - start, compare_indic_order);
if (end - start < 20)
hb_bubble_sort (info + start, end - start, compare_indic_order);
/* Setup masks now */
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册