diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/buffer.h b/src/buffer.h index 2963aa382ca..51b318218cc 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -499,14 +499,13 @@ struct buffer | |||
| 499 | 499 | ||
| 500 | Check out mark_buffer (alloc.c) to see why. */ | 500 | Check out mark_buffer (alloc.c) to see why. */ |
| 501 | 501 | ||
| 502 | EMACS_UINT size; | 502 | /* HEADER.NEXT is the next buffer, in chain of all buffers, |
| 503 | 503 | including killed buffers. | |
| 504 | /* Next buffer, in chain of all buffers including killed buffers. | ||
| 505 | This chain is used only for garbage collection, in order to | 504 | This chain is used only for garbage collection, in order to |
| 506 | collect killed buffers properly. | 505 | collect killed buffers properly. |
| 507 | Note that vectors and most pseudovectors are all on one chain, | 506 | Note that vectors and most pseudovectors are all on one chain, |
| 508 | but buffers are on a separate chain of their own. */ | 507 | but buffers are on a separate chain of their own. */ |
| 509 | struct buffer *next; | 508 | struct vector_header header; |
| 510 | 509 | ||
| 511 | /* This structure holds the coordinates of the buffer contents | 510 | /* This structure holds the coordinates of the buffer contents |
| 512 | in ordinary buffers. In indirect buffers, this is not used. */ | 511 | in ordinary buffers. In indirect buffers, this is not used. */ |