changeset 59216:6335ecadf31d

(x_produce_glyphs): Fix last change.
author Kim F. Storm <storm@cua.dk>
date Thu, 30 Dec 2004 18:07:07 +0000
parents 97d4823c4f08
children f660508778f9
files src/xdisp.c
diffstat 1 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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);