diff options
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 745e62f53f7..390ccff5c8a 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -3467,7 +3467,8 @@ adjust_overlays_for_insert (ptrdiff_t pos, ptrdiff_t length, bool before_markers | |||
| 3467 | itree_insert_gap (base->overlays, pos, length, before_markers); | 3467 | itree_insert_gap (base->overlays, pos, length, before_markers); |
| 3468 | FOR_EACH_LIVE_BUFFER (tail, other) | 3468 | FOR_EACH_LIVE_BUFFER (tail, other) |
| 3469 | if (XBUFFER (other)->base_buffer == base) | 3469 | if (XBUFFER (other)->base_buffer == base) |
| 3470 | itree_insert_gap (XBUFFER (other)->overlays, pos, length, before_markers); | 3470 | itree_insert_gap (XBUFFER (other)->overlays, pos, length, |
| 3471 | before_markers); | ||
| 3471 | } | 3472 | } |
| 3472 | } | 3473 | } |
| 3473 | 3474 | ||