aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorAndrea Corallo2021-03-09 10:03:47 +0100
committerAndrea Corallo2021-03-09 10:03:47 +0100
commit43b0df62cd5922df5495b3f4aee5b7beca14384f (patch)
tree3c0bfa9526d08c9c85e646cd355467e3dfb439ac /src/buffer.c
parent380ba045c48bfbb160da288b1bd50f82d3f999f0 (diff)
parent9cbdf20316e1cec835a7dfe28877142e437976f4 (diff)
downloademacs-43b0df62cd5922df5495b3f4aee5b7beca14384f.tar.gz
emacs-43b0df62cd5922df5495b3f4aee5b7beca14384f.zip
Merge commit '9cbdf20316' into native-comp
Diffstat (limited to 'src/buffer.c')
-rw-r--r--src/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.c b/src/buffer.c
index 5bd9b37702f..03c10cc7ae5 100644
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -1942,8 +1942,8 @@ cleaning up all windows currently displaying the buffer to be killed. */)
1942 } 1942 }
1943 /* Since we've unlinked the markers, the overlays can't be here any more 1943 /* Since we've unlinked the markers, the overlays can't be here any more
1944 either. */ 1944 either. */
1945 b->overlays_before = NULL; 1945 set_buffer_overlays_before (b, NULL);
1946 b->overlays_after = NULL; 1946 set_buffer_overlays_after (b, NULL);
1947 1947
1948 /* Reset the local variables, so that this buffer's local values 1948 /* Reset the local variables, so that this buffer's local values
1949 won't be protected from GC. They would be protected 1949 won't be protected from GC. They would be protected