From 74848a963cfec7f149be7702981d9a84cac0f905 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Tue, 4 May 1999 05:45:36 +0000 Subject: [PATCH] (x_load_font): Fix typo (`>' -> `='). --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index 2f705ec8803..ab4da0cc3d3 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6843,7 +6843,7 @@ x_load_font (f, fontname, size) 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)) -- 2.39.2