1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-03 10:31:37 -08:00

(x_produce_glyphs): Fix last change.

This commit is contained in:
Kim F. Storm 2004-12-30 18:07:07 +00:00
parent 33b2f4eaac
commit 29aa4ce71f

View 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);