overhang for the static composition case.
+2009-06-11 Kenichi Handa <handa@m17n.org>
+
+ * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
+ overhang for the static composition case.
+
2009-06-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
+ * xdisp.c (x_get_glyph_overhangs): Fix calculation of right
+ overhang for the automatic composition case.
+
* xterm.c (x_compute_glyph_string_overhangs): Handle the automatic
composition case.
{
struct composition *cmp = composition_table[glyph->u.cmp.id];
- if (cmp->rbearing - cmp->pixel_width)
+ if (cmp->rbearing > cmp->pixel_width)
*right = cmp->rbearing - cmp->pixel_width;
- if (cmp->lbearing < 0);
- *left = - cmp->lbearing;
+ if (cmp->lbearing < 0)
+ *left = - cmp->lbearing;
}
else
{