aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/xdisp.c4
1 files changed, 3 insertions, 1 deletions
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)
19110 19110
19111 height = get_line_height_property(it, Qline_height); 19111 height = get_line_height_property(it, Qline_height);
19112 /* Split (line-height total-height) list */ 19112 /* Split (line-height total-height) list */
19113 if (CONSP (height) && CONSP (XCDR (height))) 19113 if (CONSP (height)
19114 && CONSP (XCDR (height))
19115 && NILP (XCDR (XCDR (height))))
19114 { 19116 {
19115 total_height = XCAR (XCDR (height)); 19117 total_height = XCAR (XCDR (height));
19116 height = XCAR (height); 19118 height = XCAR (height);