changeset 24690:585a5e69e371

(x_load_font): Fix typo (`>' -> `=').
author Kenichi Handa <handa@m17n.org>
date Tue, 04 May 1999 05:45:36 +0000
parents 46d2dc61ec31
children 0f6ca131ad9c
files src/xterm.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))