+2007-11-10 Stefan Monnier <monnier@iro.umontreal.ca>
+
+ * xdisp.c (load_overlay_strings): Fix copy&paste typo.
+
2007-11-07 Chong Yidong <cyd@stupidchicken.com>
* dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
Rearrange a few elements.
(face_for_overlay_string): Decl renamed from
face_at_buffer_position_no_overlays, and add argument.
-
+
2007-11-03 Richard Stallman <rms@gnu.org>
* xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
j = it->current.overlay_string_index;
while (i < OVERLAY_STRING_CHUNK_SIZE && j < n)
{
- it->overlay_strings[i++] = entries[j++].string;
+ it->overlay_strings[i] = entries[j].string;
it->string_overlays[i++] = entries[j++].overlay;
}