aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhaled Hosny2018-12-24 03:12:26 +0200
committerKhaled Hosny2018-12-24 03:12:26 +0200
commitbb603936c6ea702a8f7c3930c92eeffbc79bdcdd (patch)
tree288422dfa03c6dec17caed1f88833e9aee7446c8
parente1424cb4d89a709c986411ffd29774375bd76800 (diff)
downloademacs-bb603936c6ea702a8f7c3930c92eeffbc79bdcdd.tar.gz
emacs-bb603936c6ea702a8f7c3930c92eeffbc79bdcdd.zip
Remove one more FIXME
-rw-r--r--src/ftfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ftfont.c b/src/ftfont.c
index 2faaf0b01a2..7498b775654 100644
--- a/src/ftfont.c
+++ b/src/ftfont.c
@@ -2781,8 +2781,8 @@ get_hb_unicode_funcs (void)
2781 hb_unicode_funcs_set_general_category_func (funcs, uni_general, NULL, NULL); 2781 hb_unicode_funcs_set_general_category_func (funcs, uni_general, NULL, NULL);
2782 hb_unicode_funcs_set_mirroring_func (funcs, uni_mirroring, NULL, NULL); 2782 hb_unicode_funcs_set_mirroring_func (funcs, uni_mirroring, NULL, NULL);
2783 2783
2784 /* FIXME: I don't know how to get Unicode character composition and 2784 /* Use default implmentation for Unicode composition/decomposition, we might
2785 * decomposition from Emacs. 2785 * want to revisit this later.
2786 hb_unicode_funcs_set_compose_func (funcs, uni_compose, NULL, NULL); 2786 hb_unicode_funcs_set_compose_func (funcs, uni_compose, NULL, NULL);
2787 hb_unicode_funcs_set_decompose_func (funcs, uni_decompose, NULL, NULL); 2787 hb_unicode_funcs_set_decompose_func (funcs, uni_decompose, NULL, NULL);
2788 */ 2788 */