FONT_OBJECT_MAX, PVEC_FONT);
int i;
+ /* Poison the max_width, so we can detect when it hasn't been set. */
+ eassert (font->max_width = 1024 * 1024 * 1024);
+
/* GC can happen before the driver is set up,
so avoid dangling pointer here (Bug#17771). */
font->driver = NULL;
return Qnil;
font = XFONT_OBJECT (font_object);
+ /* Sanity check to make sure we have initialized max_width. */
+ eassert (XFONT_OBJECT (font_object)->max_width < 1024 * 1024 * 1024);
+
info = CALLN (Fvector,
AREF (font_object, FONT_NAME_INDEX),
AREF (font_object, FONT_FULLNAME_INDEX),
block_input ();
cairo_glyph_t stack_glyph;
- font->min_width = font->average_width = font->space_width = 0;
+ font->min_width = font->max_width = 0;
+ font->average_width = font->space_width = 0;
for (char c = 32; c < 127; c++)
{
cairo_glyph_t *glyphs = &stack_glyph;
&& (! font->min_width
|| font->min_width > this_width))
font->min_width = this_width;
+ if (this_width > font->max_width)
+ font->max_width = this_width;
if (c == 32)
font->space_width = this_width;
font->average_width += this_width;
font->relative_compose = 0;
font->default_ascent = 0;
font->vertical_centering = false;
+ eassert (font->max_width < 512 * 1024 * 1024);
return font_object;
}