From 878a939b79b84f60b0b88531e025c09250ac5ad4 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Mon, 24 Jul 2006 02:55:39 +0000 Subject: [PATCH] (x_draw_composite_glyph_string_foreground): Check if adjustment is vector or not. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5