comparison src/xterm.c @ 24690:585a5e69e371

(x_load_font): Fix typo (`>' -> `=').
author Kenichi Handa <handa@m17n.org>
date Tue, 04 May 1999 05:45:36 +0000
parents c7d905dca6ba
children 1edc68c613d8
comparison
equal deleted inserted replaced
24689:46d2dc61ec31 24690:585a5e69e371
6841 { 6841 {
6842 /* For some font, ascent and descent in max_bounds field is 6842 /* For some font, ascent and descent in max_bounds field is
6843 larger than the above value. */ 6843 larger than the above value. */
6844 int max_height = font->max_bounds.ascent + font->max_bounds.descent; 6844 int max_height = font->max_bounds.ascent + font->max_bounds.descent;
6845 if (max_height > fontp->height) 6845 if (max_height > fontp->height)
6846 fontp->height > max_height; 6846 fontp->height = max_height;
6847 } 6847 }
6848 6848
6849 if (NILP (font_names)) 6849 if (NILP (font_names))
6850 { 6850 {
6851 /* We come here because of a bug of XListFonts mentioned at 6851 /* We come here because of a bug of XListFonts mentioned at