changeset 42688:21f5612addbb

(x_load_font): Never set fonts_changed_p to zero.
author Andreas Schwab <schwab@suse.de>
date Sun, 13 Jan 2002 00:36:20 +0000
parents fdabb5076442
children 1e13c1b0b217
files src/xterm.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/xterm.c	Sat Jan 12 22:40:36 2002 +0000
+++ b/src/xterm.c	Sun Jan 13 00:36:20 2002 +0000
@@ -14173,10 +14173,10 @@
 
     /* Set global flag fonts_changed_p to non-zero if the font loaded
        has a character with a smaller width than any other character
-       before, or if the font loaded has a smalle>r height than any
+       before, or if the font loaded has a smaller height than any
        other font loaded before.  If this happens, it will make a
        glyph matrix reallocation necessary.  */
-    fonts_changed_p = x_compute_min_glyph_bounds (f);
+    fonts_changed_p |= x_compute_min_glyph_bounds (f);
     UNBLOCK_INPUT;
     return fontp;
   }