aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 1d484d4a322..522f33f5379 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -5836,7 +5836,7 @@ mark_buffer (struct buffer *buffer)
5836 5836
5837 /* ...but there are some buffer-specific things. */ 5837 /* ...but there are some buffer-specific things. */
5838 5838
5839 MARK_INTERVAL_TREE (buffer_get_intervals (buffer)); 5839 MARK_INTERVAL_TREE (buffer_intervals (buffer));
5840 5840
5841 /* For now, we just don't mark the undo_list. It's done later in 5841 /* For now, we just don't mark the undo_list. It's done later in
5842 a special way just before the sweep phase, and after stripping 5842 a special way just before the sweep phase, and after stripping
@@ -6090,7 +6090,7 @@ mark_object (Lisp_Object arg)
6090 } 6090 }
6091 if (!PURE_POINTER_P (XSTRING (ptr->name))) 6091 if (!PURE_POINTER_P (XSTRING (ptr->name)))
6092 MARK_STRING (XSTRING (ptr->name)); 6092 MARK_STRING (XSTRING (ptr->name));
6093 MARK_INTERVAL_TREE (string_get_intervals (ptr->name)); 6093 MARK_INTERVAL_TREE (string_intervals (ptr->name));
6094 6094
6095 ptr = ptr->next; 6095 ptr = ptr->next;
6096 if (ptr) 6096 if (ptr)
@@ -6405,7 +6405,7 @@ gc_sweep (void)
6405 { 6405 {
6406 if (!iblk->intervals[i].gcmarkbit) 6406 if (!iblk->intervals[i].gcmarkbit)
6407 { 6407 {
6408 interval_set_parent (&iblk->intervals[i], interval_free_list); 6408 set_interval_parent (&iblk->intervals[i], interval_free_list);
6409 interval_free_list = &iblk->intervals[i]; 6409 interval_free_list = &iblk->intervals[i];
6410 this_free++; 6410 this_free++;
6411 } 6411 }