From cfe8a05e43dcbd251c2613a92867c0862fa1513f Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Fri, 6 Aug 1999 13:59:39 +0000 Subject: [PATCH] (produce_glyphs): Set iterator's physical height information. --- src/term.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/term.c b/src/term.c index 7c05f7cbf10..8a243317869 100644 --- a/src/term.c +++ b/src/term.c @@ -1832,8 +1832,8 @@ produce_glyphs (it) the caller. */ if (it->area == TEXT_AREA) it->current_x += it->pixel_width; - it->ascent = it->max_ascent = 0; - it->descent = it->max_descent = 1; + it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0; + it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1; } -- 2.39.5