because it doesn't hold when there's an overlay string at the end
from which we deliver an image.
+1999-12-31 Gerd Moellmann <gerd@gnu.org>
+
+ * xdisp.c (next_element_from_buffer): Change assertion at the end
+ because it doesn't hold when there's an overlay string at the end
+ from which we deliver an image.
+
1999-12-31 William M. Perry <wmperry@gnu.org>
* xfns.c (enum jpeg_keyword_index): Add JPEG_DATA.
else
{
it->overlay_strings_at_end_processed_p = 1;
- overlay_strings_follow_p
- = get_overlay_strings (it);
+ overlay_strings_follow_p = get_overlay_strings (it);
}
if (overlay_strings_follow_p)
}
/* Value is zero if end of buffer reached. */
- xassert (!success_p || it->len > 0);
+ xassert (!success_p || it->what != IT_CHARACTER || it->len > 0);
return success_p;
}