diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/alloc.c b/src/alloc.c index 1f4b1a4694e..030c6e06ba8 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -4496,7 +4496,7 @@ live_buffer_p (struct mem_node *m, void *p) | |||
| 4496 | must not have been killed. */ | 4496 | must not have been killed. */ |
| 4497 | return (m->type == MEM_TYPE_BUFFER | 4497 | return (m->type == MEM_TYPE_BUFFER |
| 4498 | && p == m->start | 4498 | && p == m->start |
| 4499 | && !NILP (((struct buffer *) p)->INTERNAL_FIELD (name))); | 4499 | && !NILP (((struct buffer *) p)->name_)); |
| 4500 | } | 4500 | } |
| 4501 | 4501 | ||
| 4502 | #endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */ | 4502 | #endif /* GC_MARK_STACK || defined GC_MALLOC_CHECK */ |
| @@ -5762,7 +5762,7 @@ garbage_collect_1 (void *end) | |||
| 5762 | after GC. It's important to scan finalizers at this stage so | 5762 | after GC. It's important to scan finalizers at this stage so |
| 5763 | that we can be sure that unmarked finalizers are really | 5763 | that we can be sure that unmarked finalizers are really |
| 5764 | unreachable except for references from their associated functions | 5764 | unreachable except for references from their associated functions |
| 5765 | and from other finalizers. */ | 5765 | and from other finalizers. */ |
| 5766 | 5766 | ||
| 5767 | queue_doomed_finalizers (&doomed_finalizers, &finalizers); | 5767 | queue_doomed_finalizers (&doomed_finalizers, &finalizers); |
| 5768 | mark_finalizer_list (&doomed_finalizers); | 5768 | mark_finalizer_list (&doomed_finalizers); |