aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2007-11-10 03:06:45 +0000
committerStefan Monnier <[email protected]>2007-11-10 03:06:45 +0000
commit8383dac7992befba8da714a3f9519a34472291c8 (patch)
tree04a772a294d93d0739d39d9f4044ce99fad134ea /src
parent1e013b133685df245f4ee248d6f51bb2d2f36797 (diff)
(load_overlay_strings): Fix copy&paste typo.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/xdisp.c2
2 files changed, 6 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 5849ac96f4..cf52472974 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
+2007-11-10 Stefan Monnier <[email protected]>
+
+ * xdisp.c (load_overlay_strings): Fix copy&paste typo.
+
2007-11-07 Chong Yidong <[email protected]>
* dispextern.h (struct it): Don't define OVERLAY_STRING_CHUNK_SIZE
@@ -29,7 +33,7 @@
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 <[email protected]>
* xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
diff --git a/src/xdisp.c b/src/xdisp.c
index 4c78f6ac8f..9a5131a047 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -4918,7 +4918,7 @@ load_overlay_strings (it, charpos)
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;
}