From b2fbe55b828ea5864bc0aed54db7109a2e189de2 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 9 Oct 2018 01:07:36 -0400 Subject: [PATCH] [icu] Unbreak --- src/hb-icu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-icu.cc b/src/hb-icu.cc index 83a15e7f2..e012314b5 100644 --- a/src/hb-icu.cc +++ b/src/hb-icu.cc @@ -311,8 +311,8 @@ static struct hb_icu_unicode_funcs_lazy_loader_t : hb_unicode_funcs_lazy_loader_ hb_unicode_funcs_set_general_category_func (funcs, hb_icu_unicode_general_category, nullptr, nullptr); hb_unicode_funcs_set_mirroring_func (funcs, hb_icu_unicode_mirroring, nullptr, nullptr); hb_unicode_funcs_set_script_func (funcs, hb_icu_unicode_script, nullptr, nullptr); - hb_unicode_funcs_set_compose_func (funcs, hb_icu_unicode_compose, nullptr, nullptr); - hb_unicode_funcs_set_decompose_func (funcs, hb_icu_unicode_decompose, nullptr, nullptr); + hb_unicode_funcs_set_compose_func (funcs, hb_icu_unicode_compose, user_data, nullptr); + hb_unicode_funcs_set_decompose_func (funcs, hb_icu_unicode_decompose, user_data, nullptr); hb_unicode_funcs_make_immutable (funcs);