aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorTom Tromey2012-08-20 07:34:41 -0600
committerTom Tromey2012-08-20 07:34:41 -0600
commit49bc1a9dfc6e81a370bf12157c3c573743ee200a (patch)
tree24df8b040aff367adc11a2c676334ec238651e1d /src/alloc.c
parentb94de893429bbfbb27572c8c3118fcc876957adb (diff)
parenta05731a0cc2553af0469bd9b7d6ac10cd2e6a817 (diff)
downloademacs-49bc1a9dfc6e81a370bf12157c3c573743ee200a.tar.gz
emacs-49bc1a9dfc6e81a370bf12157c3c573743ee200a.zip
Merge from trunk
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 19b77d567d0..a8830684580 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -5809,7 +5809,7 @@ mark_buffer (struct buffer *buffer)
5809 5809
5810 /* ...but there are some buffer-specific things. */ 5810 /* ...but there are some buffer-specific things. */
5811 5811
5812 MARK_INTERVAL_TREE (buffer_get_intervals (buffer)); 5812 MARK_INTERVAL_TREE (buffer_intervals (buffer));
5813 5813
5814 /* For now, we just don't mark the undo_list. It's done later in 5814 /* For now, we just don't mark the undo_list. It's done later in
5815 a special way just before the sweep phase, and after stripping 5815 a special way just before the sweep phase, and after stripping
@@ -6063,7 +6063,7 @@ mark_object (Lisp_Object arg)
6063 } 6063 }
6064 if (!PURE_POINTER_P (XSTRING (ptr->name))) 6064 if (!PURE_POINTER_P (XSTRING (ptr->name)))
6065 MARK_STRING (XSTRING (ptr->name)); 6065 MARK_STRING (XSTRING (ptr->name));
6066 MARK_INTERVAL_TREE (string_get_intervals (ptr->name)); 6066 MARK_INTERVAL_TREE (string_intervals (ptr->name));
6067 6067
6068 ptr = ptr->next; 6068 ptr = ptr->next;
6069 if (ptr) 6069 if (ptr)
@@ -6378,7 +6378,7 @@ gc_sweep (void)
6378 { 6378 {
6379 if (!iblk->intervals[i].gcmarkbit) 6379 if (!iblk->intervals[i].gcmarkbit)
6380 { 6380 {
6381 interval_set_parent (&iblk->intervals[i], interval_free_list); 6381 set_interval_parent (&iblk->intervals[i], interval_free_list);
6382 interval_free_list = &iblk->intervals[i]; 6382 interval_free_list = &iblk->intervals[i];
6383 this_free++; 6383 this_free++;
6384 } 6384 }