# HG changeset patch # User Kenichi Handa # Date 1196476849 0 # Node ID 3b9ed57b1424f9d708010f7199acc0c7206c75c0 # Parent 50fae08720cc1c565d6507f42706d91b4f25490c (x_draw_composite_glyph_string_foreground): Adjusted for the change of lispy gstring. diff -r 50fae08720cc -r 3b9ed57b1424 src/w32term.c --- a/src/w32term.c Sat Dec 01 02:39:57 2007 +0000 +++ b/src/w32term.c Sat Dec 01 02:40:49 2007 +0000 @@ -2009,7 +2009,7 @@ if (! VECTORP (adjustment)) { - width += XINT (LGLYPH_WIDTH (g)); + width += LGLYPH_WIDTH (g); continue; } if (from < i) @@ -2022,7 +2022,7 @@ wadjust = XINT (AREF (adjustment, 2)); font->driver->draw (s, i, i + 1, x + xoff, y + yoff, 0); - x += XINT (LGLYPH_WIDTH (g)) + wadjust; + x += wadjust; from = i + 1; width = 0; }