aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.c
diff options
context:
space:
mode:
authorGerd Moellmann1999-08-06 13:59:39 +0000
committerGerd Moellmann1999-08-06 13:59:39 +0000
commitcfe8a05e43dcbd251c2613a92867c0862fa1513f (patch)
treea944f98ba9fe3e4bb643d309555bccb96dbadb12 /src/term.c
parent408f5064df31e2bc1934a1c93183eedac1ca4e79 (diff)
downloademacs-cfe8a05e43dcbd251c2613a92867c0862fa1513f.tar.gz
emacs-cfe8a05e43dcbd251c2613a92867c0862fa1513f.zip
(produce_glyphs): Set iterator's physical height
information.
Diffstat (limited to 'src/term.c')
-rw-r--r--src/term.c4
1 files 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)
1832 the caller. */ 1832 the caller. */
1833 if (it->area == TEXT_AREA) 1833 if (it->area == TEXT_AREA)
1834 it->current_x += it->pixel_width; 1834 it->current_x += it->pixel_width;
1835 it->ascent = it->max_ascent = 0; 1835 it->ascent = it->max_ascent = it->phys_ascent = it->max_phys_ascent = 0;
1836 it->descent = it->max_descent = 1; 1836 it->descent = it->max_descent = it->phys_descent = it->max_phys_descent = 1;
1837} 1837}
1838 1838
1839 1839