From 611f839fe61d3e2b730f353f785cba2fb402fb5d Mon Sep 17 00:00:00 2001 From: handa Date: Mon, 16 May 2005 13:02:36 +0000 Subject: [PATCH] *** empty log message *** --- src/ChangeLog | 6 ++++++ src/font-ft.c | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ChangeLog b/src/ChangeLog index 57cb3b5..08102c4 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2005-05-16 Kenichi Handa + + * m17n-core.c (m17n_object): Be sure to initialize all members. + + * font-ft.c (fc_decode_prop): Fix args to msymbol. + 2005-05-09 Kenichi Handa * m17n-X.c (mwin__close_device): Fix arg to M17N_OBJECT_UNREF. diff --git a/src/font-ft.c b/src/font-ft.c index 3753a30..ee3f5a2 100644 --- a/src/font-ft.c +++ b/src/font-ft.c @@ -1098,8 +1098,8 @@ fc_decode_prop (int val, FC_vs_M17N_font_prop *table) for (i = 0; table[i].m17n_value; i++) if (val <= table[i].fc_value) - return msymbol ("table[i].m17n_value"); - return msymbol ("table[i - 1].m17n_value"); + return msymbol (table[i].m17n_value); + return msymbol (table[i - 1].m17n_value); } static int -- 1.7.10.4