From: handa Date: Mon, 1 Mar 2010 06:17:31 +0000 (+0000) Subject: (run_rule): Fix checking of glyph availability. X-Git-Tag: merge-to-XML~1 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=5c86437b236423482e209d03d6ccd6a8fce92506;p=m17n%2Fm17n-lib.git (run_rule): Fix checking of glyph availability. --- diff --git a/src/m17n-flt.c b/src/m17n-flt.c index c67c3da..c0ae65b 100644 --- a/src/m17n-flt.c +++ b/src/m17n-flt.c @@ -1726,12 +1726,12 @@ run_rule (int depth, { if (MPLIST_INTEGER_P (p)) { - GREF (&gstring, i)->code = MPLIST_INTEGER (p); + GREF (&gstring, i)->c = MPLIST_INTEGER (p); GREF (&gstring, i)->encoded = 0; } else { - GREF (&gstring, i)->code = GREF (ctx->in, idx)->code; + GREF (&gstring, i)->c = GREF (ctx->in, idx)->code; GREF (&gstring, i)->encoded = GREF (ctx->in, idx)->encoded; idx++; }