aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.c
diff options
context:
space:
mode:
authorYuuki Harano2021-03-08 21:20:54 +0900
committerYuuki Harano2021-03-08 21:20:54 +0900
commit4dda6db3abf4a67455a007d28e14d62a9909f665 (patch)
tree88d4e316e81f5bdd8b6801ff89ea68cd164e4055 /src/buffer.c
parent565995d408ca65ec9f981f175cca29d2164a5fd0 (diff)
parent432c1aaa80ce109250a93f50858a03ce3d01ca34 (diff)
downloademacs-4dda6db3abf4a67455a007d28e14d62a9909f665.tar.gz
emacs-4dda6db3abf4a67455a007d28e14d62a9909f665.zip
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs into feature/pgtk
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