# HG changeset patch # User Andreas Schwab # Date 1010882180 0 # Node ID 21f5612addbb29eb68260d3fabf1b5679ecdd689 # Parent fdabb5076442280d8b15bb3fa87a8ac32f302ee9 (x_load_font): Never set fonts_changed_p to zero. diff -r fdabb5076442 -r 21f5612addbb src/xterm.c --- 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; }