mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-06 11:50:51 -08:00
(load_overlay_strings): Fix copy&paste typo.
This commit is contained in:
parent
1e013b1336
commit
8383dac799
2 changed files with 6 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
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
|
||||
|
|
@ -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 <rms@gnu.org>
|
||||
|
||||
* xdisp.c (handle_face_prop): Use face_at_buffer_position_no_overlays
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue