diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/buffer.h b/src/buffer.h index 31f497ea40a..abb1294d038 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -570,9 +570,6 @@ struct buffer | |||
| 570 | In an indirect buffer, this is the own_text field of another buffer. */ | 570 | In an indirect buffer, this is the own_text field of another buffer. */ |
| 571 | struct buffer_text *text; | 571 | struct buffer_text *text; |
| 572 | 572 | ||
| 573 | /* Next buffer, in chain of all buffers, including killed ones. */ | ||
| 574 | struct buffer *next; | ||
| 575 | |||
| 576 | /* Char position of point in buffer. */ | 573 | /* Char position of point in buffer. */ |
| 577 | ptrdiff_t pt; | 574 | ptrdiff_t pt; |
| 578 | 575 | ||
| @@ -1104,15 +1101,6 @@ BUFFER_CHECK_INDIRECTION (struct buffer *b) | |||
| 1104 | } | 1101 | } |
| 1105 | } | 1102 | } |
| 1106 | 1103 | ||
| 1107 | /* Chain of all buffers, including killed ones. */ | ||
| 1108 | |||
| 1109 | extern struct buffer *all_buffers; | ||
| 1110 | |||
| 1111 | /* Used to iterate over the chain above. */ | ||
| 1112 | |||
| 1113 | #define FOR_EACH_BUFFER(b) \ | ||
| 1114 | for ((b) = all_buffers; (b); (b) = (b)->next) | ||
| 1115 | |||
| 1116 | /* This structure holds the default values of the buffer-local variables | 1104 | /* This structure holds the default values of the buffer-local variables |
| 1117 | that have special slots in each buffer. | 1105 | that have special slots in each buffer. |
| 1118 | The default value occupies the same slot in this structure | 1106 | The default value occupies the same slot in this structure |