# HG changeset patch # User Kim F. Storm # Date 1104430027 0 # Node ID 6335ecadf31dc71e0770ca04d42be69e369e5015 # Parent 97d4823c4f087c91508bf48fb513de3bcf45af1d (x_produce_glyphs): Fix last change. diff -r 97d4823c4f08 -r 6335ecadf31d src/xdisp.c --- a/src/xdisp.c Thu Dec 30 18:02:30 2004 +0000 +++ b/src/xdisp.c Thu Dec 30 18:07:07 2004 +0000 @@ -19110,7 +19110,9 @@ 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);