diff options
| author | Kenichi Handa | 1999-04-05 06:47:41 +0000 |
|---|---|---|
| committer | Kenichi Handa | 1999-04-05 06:47:41 +0000 |
| commit | 07ff4fb3cfa7e3f8513a7c8df093a2b51a43bf4e (patch) | |
| tree | 06f6fef9ab47938eaf923b63b03e386af3e767e5 | |
| parent | ec4d5313320d0cb6721805849586dabdfa6c211c (diff) | |
| download | emacs-07ff4fb3cfa7e3f8513a7c8df093a2b51a43bf4e.tar.gz emacs-07ff4fb3cfa7e3f8513a7c8df093a2b51a43bf4e.zip | |
(dumpglyphs): Be sure to fill the whole background of
glyphs.
| -rw-r--r-- | src/xterm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/xterm.c b/src/xterm.c index e4c4e62095f..86fd43ac162 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -896,7 +896,9 @@ dumpglyphs (f, left, top, gp, n, hl, just_foreground, cmpcharp) | |||
| 896 | background_filled = 1; | 896 | background_filled = 1; |
| 897 | } | 897 | } |
| 898 | else if (!font | 898 | else if (!font |
| 899 | || FONT_HEIGHT (font) < line_height | 899 | || FONT_BASE (font) < baseline |
| 900 | || (FONT_HEIGHT (font) - FONT_BASE (font) | ||
| 901 | < line_height - baseline) | ||
| 900 | || FONT_WIDTH (font) < glyph_width | 902 | || FONT_WIDTH (font) < glyph_width |
| 901 | || cmpcharp) | 903 | || cmpcharp) |
| 902 | { | 904 | { |