+2006-03-21 Ken Raeburn <raeburn@raeburn.org>
+
+ * xdisp.c (store_next_glyph): Renamed from append_glyph.
+ (generate_stretch_glyph): Renamed from produce_stretch_glyph.
+ All callers changed accordingly.
+
2006-03-21 Jan Dj\e,Ad\e(Brv <jan.h.d@swipnet.se>
* xterm.c: x_session_initialized new variable.
Called from x_produce_glyphs when IT->glyph_row is non-null. */
static INLINE void
-append_glyph (it)
+store_next_glyph (it)
struct it *it;
{
struct glyph *glyph;
ASCENT must be in the range 0 <= ASCENT <= 100. */
static void
-produce_stretch_glyph (it)
+generate_stretch_glyph (it)
struct it *it;
{
/* (space :width WIDTH :height HEIGHT ...) */
it->ascent + it->descent, ascent);
}
else
- append_glyph (it);
+ store_next_glyph (it);
/* If characters with lbearing or rbearing are displayed
in this line, record that fact in a flag of the
take_vertical_position_into_account (it);
if (it->glyph_row)
- append_glyph (it);
+ store_next_glyph (it);
}
it->multibyte_p = saved_multibyte_p;
}
else if (it->what == IT_IMAGE)
produce_image_glyph (it);
else if (it->what == IT_STRETCH)
- produce_stretch_glyph (it);
+ generate_stretch_glyph (it);
/* Accumulate dimensions. Note: can't assume that it->descent > 0
because this isn't true for images with `:ascent 100'. */