diff options
| -rw-r--r-- | src/ChangeLog | 18 | ||||
| -rw-r--r-- | src/dispextern.h | 4 |
2 files changed, 22 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 84224e57ad0..1f925dac136 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,21 @@ | |||
| 1 | 2000-06-22 Gerd Moellmann <gerd@gnu.org> | ||
| 2 | |||
| 3 | * xdisp.c (handle_stop): Initialize it->add_overlay_start to zero. | ||
| 4 | (handle_invisible_prop): Record the start of invisible text in | ||
| 5 | it->add_overlay_start. | ||
| 6 | (struct overlay_entry): Add member `overlay'. | ||
| 7 | (handle_overlay_change): Simplify. | ||
| 8 | (next_overlay_string): After having processed overlay strings at the | ||
| 9 | end of the buffer, record that fact in | ||
| 10 | it->overlay_strings_at_end_processed_p. | ||
| 11 | (compare_overlay_entries): If before- and after-strings come | ||
| 12 | from the same overlay, let before-strings come first. | ||
| 13 | (RECORD_OVERLAY_STRING): Record the overlay that strings come from. | ||
| 14 | (load_overlay_strings): Take it->add_overlay_start into account | ||
| 15 | when adding overlay strings. | ||
| 16 | |||
| 17 | * dispextern.h (struct it): Add member add_overlay_start. | ||
| 18 | |||
| 1 | 2000-06-22 Dave Love <fx@gnu.org> | 19 | 2000-06-22 Dave Love <fx@gnu.org> |
| 2 | 20 | ||
| 3 | * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500. | 21 | * s/isc3-0.h (C_SWITCH_SYSTEM): Define _XOPEN_SOURCE=500. |
diff --git a/src/dispextern.h b/src/dispextern.h index e53cdfb3a6e..4d81e9e4e27 100644 --- a/src/dispextern.h +++ b/src/dispextern.h | |||
| @@ -1571,6 +1571,10 @@ struct it | |||
| 1571 | OVERLAY_STRING_CHUNK_SIZE. */ | 1571 | OVERLAY_STRING_CHUNK_SIZE. */ |
| 1572 | int n_overlay_strings; | 1572 | int n_overlay_strings; |
| 1573 | 1573 | ||
| 1574 | /* If non-zero, an additional overlay start position to take overlay | ||
| 1575 | strings from. */ | ||
| 1576 | int add_overlay_start; | ||
| 1577 | |||
| 1574 | /* If non-nil, a Lisp string being processed. If | 1578 | /* If non-nil, a Lisp string being processed. If |
| 1575 | current.overlay_string_index >= 0, this is an overlay string from | 1579 | current.overlay_string_index >= 0, this is an overlay string from |
| 1576 | pos. */ | 1580 | pos. */ |