diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-12-06 10:47:03 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-12-06 10:47:03 +0000 |
commit | 9765b4a48777b98a338c900fe64838f2a03679ef (patch) | |
tree | 67bc50650c167814649182e01c5891a51ebb51ec /src/xterm.c | |
parent | 11753d04cb1e5d004829adadb855adc7125d5d93 (diff) | |
download | emacs-9765b4a48777b98a338c900fe64838f2a03679ef.tar.gz |
(x_load_font): Don't use the font's max_bounds for
computing the height of the font. If max_bounds' ascent or
descent are greater than the font's ascent or descent, this means
glyphs overlap, which should be handled now by redisplay.
Diffstat (limited to 'src/xterm.c')
-rw-r--r-- | src/xterm.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/xterm.c b/src/xterm.c index da53834e08f..f30ee0159fd 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -13213,13 +13213,6 @@ x_load_font (f, fontname, size) fontp->size = font->max_bounds.width; fontp->height = FONT_HEIGHT (font); - { - /* For some font, ascent and descent in max_bounds field is - larger than the above value. */ - int max_height = font->max_bounds.ascent + font->max_bounds.descent; - if (max_height > fontp->height) - fontp->height = max_height; - } if (NILP (font_names)) { |