# HG changeset patch # User Kenichi Handa # Date 925796736 0 # Node ID 585a5e69e37125f57a580828404bf541cb9cbb71 # Parent 46d2dc61ec318cf2401ba0e4c1ccc4bed2626c7c (x_load_font): Fix typo (`>' -> `='). diff -r 46d2dc61ec31 -r 585a5e69e371 src/xterm.c --- a/src/xterm.c Tue May 04 05:43:41 1999 +0000 +++ b/src/xterm.c Tue May 04 05:45:36 1999 +0000 @@ -6843,7 +6843,7 @@ 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; + fontp->height = max_height; } if (NILP (font_names))