]> git.eshelyaron.com Git - emacs.git/commitdiff
(x_load_font): Never set fonts_changed_p to zero.
authorAndreas Schwab <schwab@suse.de>
Sun, 13 Jan 2002 00:46:08 +0000 (00:46 +0000)
committerAndreas Schwab <schwab@suse.de>
Sun, 13 Jan 2002 00:46:08 +0000 (00:46 +0000)
src/ChangeLog
src/xterm.c

index 74339e14eff681afe321a453bfca6b2e3ef4f256..9489c1f4a372c3eda665f7af7cf35fbe32871963 100644 (file)
@@ -1,3 +1,7 @@
+2002-01-13  Andreas Schwab  <schwab@suse.de>
+
+       * xterm.c (x_load_font): Never set fonts_changed_p to zero.
+
 2002-01-07  Eli Zaretskii  <eliz@is.elta.co.il>
 
        * process.c (send_process): Set src_multibyte to 1 after the call
index d003b436ec55627998e48aa647bce4d603ffd977..bda75c3f38f713889756035d7d76d5673706d142 100644 (file)
@@ -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;
   }