From 29aa4ce71f71a79909478b024187f0567abe4d0e Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Thu, 30 Dec 2004 18:07:07 +0000 Subject: [PATCH] (x_produce_glyphs): Fix last change. --- src/xdisp.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/xdisp.c b/src/xdisp.c index 952c7110755..61ea98b37ef 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -19110,7 +19110,9 @@ x_produce_glyphs (it) height = get_line_height_property(it, Qline_height); /* Split (line-height total-height) list */ - if (CONSP (height) && CONSP (XCDR (height))) + if (CONSP (height) + && CONSP (XCDR (height)) + && NILP (XCDR (XCDR (height)))) { total_height = XCAR (XCDR (height)); height = XCAR (height); -- 2.39.2