diff options
| author | Jan D | 2015-05-17 16:46:34 +0200 |
|---|---|---|
| committer | Jan D | 2015-05-17 16:46:34 +0200 |
| commit | 6445ee0fb751ae2c1dfef900d44721b3d952812f (patch) | |
| tree | d43006cb93d9ea7b00ea02aabcd5577c41ff827f /src/alloc.c | |
| parent | f92ac2e82ed199d6f25d2a59508e08addb1150ac (diff) | |
| parent | c9c4708ed47b18987940a71b98eb9873150d2b95 (diff) | |
| download | emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.tar.gz emacs-6445ee0fb751ae2c1dfef900d44721b3d952812f.zip | |
Merge branch 'master' into cairo
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); |