diff options
author | Gerd Moellmann <gerd@gnu.org> | 1999-12-28 12:13:02 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 1999-12-28 12:13:02 +0000 |
commit | 481b505472c397d389a75e4c4e0247b724cde746 (patch) | |
tree | ac625d56ae438a12d0d47b15635c8572a7704e2a /src/buffer.c | |
parent | 9d60f77200a72fa9367704b061ebba92b04b69c1 (diff) | |
download | emacs-481b505472c397d389a75e4c4e0247b724cde746.tar.gz |
(modify_overlay): Always compute unchanged info.
Diffstat (limited to 'src/buffer.c')
-rw-r--r-- | src/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c index 47d15e9fcf1..871a152484e 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -3088,6 +3088,8 @@ modify_overlay (buf, start, end) start = end; end = temp; } + BUF_COMPUTE_UNCHANGED (buf, start, end); + /* If this is a buffer not in the selected window, we must do other windows. */ if (buf != XBUFFER (XWINDOW (selected_window)->buffer)) @@ -3095,8 +3097,6 @@ modify_overlay (buf, start, end) /* If multiple windows show this buffer, we must do other windows. */ else if (buffer_shared > 1) windows_or_buffers_changed = 1; - else - BUF_COMPUTE_UNCHANGED (buf, start, end); ++BUF_OVERLAY_MODIFF (buf); } |