From: Andreas Schwab Date: Sun, 13 Jan 2002 00:46:08 +0000 (+0000) Subject: (x_load_font): Never set fonts_changed_p to zero. X-Git-Tag: emacs-21.2~194 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f80ddc6cfe1271550aa276ff859de7c641ade603;p=emacs.git (x_load_font): Never set fonts_changed_p to zero. --- diff --git a/src/ChangeLog b/src/ChangeLog index 74339e14eff..9489c1f4a37 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2002-01-13 Andreas Schwab + + * xterm.c (x_load_font): Never set fonts_changed_p to zero. + 2002-01-07 Eli Zaretskii * process.c (send_process): Set src_multibyte to 1 after the call diff --git a/src/xterm.c b/src/xterm.c index d003b436ec5..bda75c3f38f 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -14034,7 +14034,7 @@ x_load_font (f, fontname, size) before, or if the font loaded has a smalle>r 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; }