]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_produce_glyphs): Fix last change.
authorKim F. Storm <storm@cua.dk>
Thu, 30 Dec 2004 18:07:07 +0000 (18:07 +0000)
committerKim F. Storm <storm@cua.dk>
Thu, 30 Dec 2004 18:07:07 +0000 (18:07 +0000)
src/xdisp.c

index 952c7110755d4fa8204927c97a383034b1a2b3bf..61ea98b37ef4a2cd32b16f3c177380cd48f7ea7e 100644 (file)
@@ -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);