diff options
| author | Gerd Moellmann | 1999-08-06 13:59:39 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 1999-08-06 13:59:39 +0000 |
| commit | cfe8a05e43dcbd251c2613a92867c0862fa1513f (patch) | |
| tree | a944f98ba9fe3e4bb643d309555bccb96dbadb12 /src/term.c | |
| parent | 408f5064df31e2bc1934a1c93183eedac1ca4e79 (diff) | |
| download | emacs-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.c | 4 |
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 | ||