From: Kenichi Handa Date: Thu, 11 Jun 2009 02:34:57 +0000 (+0000) Subject: (x_get_glyph_overhangs): Fix calculation of right X-Git-Tag: emacs-pretest-23.0.95~87 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5753e4da2b6abed72700f61ffa94c9a99ceb404b;p=emacs.git (x_get_glyph_overhangs): Fix calculation of right overhang for the static composition case. --- diff --git a/src/ChangeLog b/src/ChangeLog index 37f160a040b..d545ac7f2da 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,13 @@ +2009-06-11 Kenichi Handa + + * xdisp.c (x_get_glyph_overhangs): Fix calculation of right + overhang for the static composition case. + 2009-06-11 YAMAMOTO Mitsuharu + * 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. diff --git a/src/xdisp.c b/src/xdisp.c index eff922e7422..0f3674433b5 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -19913,10 +19913,10 @@ x_get_glyph_overhangs (glyph, f, left, right) { 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 {