diff options
Diffstat (limited to 'src/buffer.h')
| -rw-r--r-- | src/buffer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/buffer.h b/src/buffer.h index 1124f607bda..54c32d9b9b2 100644 --- a/src/buffer.h +++ b/src/buffer.h | |||
| @@ -562,6 +562,10 @@ struct buffer | |||
| 562 | /* Position where the overlay lists are centered. */ | 562 | /* Position where the overlay lists are centered. */ |
| 563 | EMACS_INT overlay_center; | 563 | EMACS_INT overlay_center; |
| 564 | 564 | ||
| 565 | /* Everything from here down must be a Lisp_Object. */ | ||
| 566 | /* buffer-local Lisp variables start at `undo_list', | ||
| 567 | tho only the ones from `name' on are GC'd normally. */ | ||
| 568 | |||
| 565 | /* Changes in the buffer are recorded here for undo. | 569 | /* Changes in the buffer are recorded here for undo. |
| 566 | t means don't record anything. | 570 | t means don't record anything. |
| 567 | This information belongs to the base buffer of an indirect buffer, | 571 | This information belongs to the base buffer of an indirect buffer, |
| @@ -571,8 +575,6 @@ struct buffer | |||
| 571 | This comes before `name' because it is marked in a special way. */ | 575 | This comes before `name' because it is marked in a special way. */ |
| 572 | Lisp_Object undo_list; | 576 | Lisp_Object undo_list; |
| 573 | 577 | ||
| 574 | /* Everything from here down must be a Lisp_Object. */ | ||
| 575 | |||
| 576 | /* The name of this buffer. */ | 578 | /* The name of this buffer. */ |
| 577 | Lisp_Object name; | 579 | Lisp_Object name; |
| 578 | 580 | ||