# HG changeset patch # User Gerd Moellmann # Date 933947979 0 # Node ID 39feb68ed3c7f90494156a9c34d233060baf4acb # Parent d6c9413345679275ae874e8b7e14f4c4893c20fc (produce_glyphs): Set iterator's physical height information. diff -r d6c941334567 -r 39feb68ed3c7 src/term.c --- a/src/term.c Fri Aug 06 13:59:32 1999 +0000 +++ b/src/term.c Fri Aug 06 13:59:39 1999 +0000 @@ -1832,8 +1832,8 @@ 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; }