aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorOleh Krehel2015-04-28 19:03:52 +0200
committerOleh Krehel2015-04-28 19:19:55 +0200
commit5da3780604802ba86625dac927f8f6a48b6df2cc (patch)
tree56482d8fc2b2cc6fb5f4154a3f87463f3a75e185 /src/alloc.c
parentbed17055404bf43e17deb40897bee49db985de52 (diff)
downloademacs-scratch/remove-internal-field.tar.gz
emacs-scratch/remove-internal-field.zip
Mark previous uses of INTERNAL_FIELD with a trailing underscorescratch/remove-internal-field
* src/.gdbinit: Revert the previous changes. * src/buffer.c (compact_buffer): Use BVAR.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 509ac59c9d4..688363d06e3 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)->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 */