From: Kenichi Handa Date: Mon, 24 Jul 2006 02:55:39 +0000 (+0000) Subject: (x_draw_composite_glyph_string_foreground): Check if X-Git-Tag: emacs-pretest-23.0.90~8295^2~812 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=878a939b79b84f60b0b88531e025c09250ac5ad4;p=emacs.git (x_draw_composite_glyph_string_foreground): Check if adjustment is vector or not. --- diff --git a/src/xterm.c b/src/xterm.c index ca5af4afbfc..de26d3931d9 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -1469,7 +1469,7 @@ x_draw_composite_glyph_string_foreground (s) Lisp_Object adjustment = LGLYPH_ADJUSTMENT (g); int xoff, yoff, wadjust; - if (NILP (adjustment)) + if (! VECTORP (adjustment)) { width += XINT (LGLYPH_WIDTH (g)); continue;