aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim F. Storm2004-12-30 18:07:07 +0000
committerKim F. Storm2004-12-30 18:07:07 +0000
commit29aa4ce71f71a79909478b024187f0567abe4d0e (patch)
tree331a616c83402915fe548f69aaa95df784b86995
parent33b2f4eaacc5123d6db8b2fab3ff012292964120 (diff)
downloademacs-29aa4ce71f71a79909478b024187f0567abe4d0e.tar.gz
emacs-29aa4ce71f71a79909478b024187f0567abe4d0e.zip
(x_produce_glyphs): Fix last change.
-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);