aboutsummaryrefslogtreecommitdiffstats
path: root/src/buffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/buffer.h')
-rw-r--r--src/buffer.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h
index 56d0422b7e3..a9240546427 100644
--- a/src/buffer.h
+++ b/src/buffer.h
@@ -487,14 +487,13 @@ struct buffer
487 487
488 Check out mark_buffer (alloc.c) to see why. */ 488 Check out mark_buffer (alloc.c) to see why. */
489 489
490 EMACS_UINT size; 490 /* HEADER.NEXT is the next buffer, in chain of all buffers,
491 491 including killed buffers.
492 /* Next buffer, in chain of all buffers including killed buffers.
493 This chain is used only for garbage collection, in order to 492 This chain is used only for garbage collection, in order to
494 collect killed buffers properly. 493 collect killed buffers properly.
495 Note that vectors and most pseudovectors are all on one chain, 494 Note that vectors and most pseudovectors are all on one chain,
496 but buffers are on a separate chain of their own. */ 495 but buffers are on a separate chain of their own. */
497 struct buffer *next; 496 struct vectorlike_header header;
498 497
499 /* This structure holds the coordinates of the buffer contents 498 /* This structure holds the coordinates of the buffer contents
500 in ordinary buffers. In indirect buffers, this is not used. */ 499 in ordinary buffers. In indirect buffers, this is not used. */