From: Kenichi Handa Date: Tue, 4 May 1999 05:45:36 +0000 (+0000) Subject: (x_load_font): Fix typo (`>' -> `='). X-Git-Tag: emacs-20.4~259 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=74848a963cfec7f149be7702981d9a84cac0f905;p=emacs.git (x_load_font): Fix typo (`>' -> `='). --- 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))