window height hasn't changed.
+2000-10-31 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (redisplay_tool_bar): Don't set fonts_changed_p if
+ window height hasn't changed.
+
2000-10-31 Jason Rumney <jasonr@gnu.org>
* w32term.c (x_produce_glyphs): Handle composite characters.
{
extern Lisp_Object Qtool_bar_lines;
Lisp_Object frame;
+ int old_height = XFASTINT (w->height);
XSETFRAME (frame, f);
clear_glyph_matrix (w->desired_matrix);
Fcons (Fcons (Qtool_bar_lines,
make_number (nlines)),
Qnil));
- fonts_changed_p = 1;
+ if (XFASTINT (w->height) != old_height)
+ fonts_changed_p = 1;
}
}