From: Gerd Moellmann Date: Fri, 6 Aug 1999 13:59:39 +0000 (+0000) Subject: (produce_glyphs): Set iterator's physical height X-Git-Tag: emacs-pretest-21.0.90~7254 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cfe8a05e43dcbd251c2613a92867c0862fa1513f;p=emacs.git (produce_glyphs): Set iterator's physical height information. --- 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; }