+2001-03-23 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (dump_glyph_row): Fix output for NGLYPHS == 2.
+
2001-03-23 Eli Zaretskii <eliz@is.elta.co.il>
* xmenu.c: Include widget.h only if USE_X_TOOLKIT is defined.
for (area = LEFT_MARGIN_AREA; area < LAST_AREA; ++area)
{
- struct glyph *glyph, *glyph_end;
- glyph = row->glyphs[area];
- glyph_end = glyph + row->used[area];
+ struct glyph *glyph = row->glyphs[area];
+ struct glyph *glyph_end = glyph + row->used[area];
/* Glyph for a line end in text. */
- if (glyph == glyph_end && glyph->charpos > 0)
+ if (area == TEXT_AREA && glyph == glyph_end && glyph->charpos > 0)
++glyph_end;
if (glyph < glyph_end)