Mercurial > emacs
changeset 110021:c1792addf7ea
composite.c (composition_update_it): Fix computing of cmp_it->width.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Mon, 30 Aug 2010 09:33:17 +0900 |
parents | 10e66ac64b61 (current diff) dd01a03cf509 (diff) |
children | 6b8c20b6ec43 |
files | |
diffstat | 2 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Sun Aug 29 18:15:09 2010 -0400 +++ b/src/ChangeLog Mon Aug 30 09:33:17 2010 +0900 @@ -1,3 +1,8 @@ +2010-08-30 Kenichi Handa <handa@m17n.org> + + * composite.c (composition_update_it): Fix computing of + cmp_it->width. + 2010-08-29 Jan Djärv <jan.h.d@swipnet.se> * nsterm.m (ns_draw_window_cursor): Draw BAR_CURSOR correct for R2L.
--- a/src/composite.c Sun Aug 29 18:15:09 2010 -0400 +++ b/src/composite.c Mon Aug 30 09:33:17 2010 +0900 @@ -1440,8 +1440,7 @@ { c = XINT (LGSTRING_CHAR (gstring, i)); cmp_it->nbytes += CHAR_BYTES (c); - cmp_it->width = (LGLYPH_WIDTH (glyph) > 0 - ? CHAR_WIDTH (LGLYPH_CHAR (glyph)) : 0); + cmp_it->width += LGLYPH_WIDTH (glyph) > 0 ? CHAR_WIDTH (c) : 0; } } return c;