diff options
| author | Stefan Monnier | 2008-02-11 17:54:15 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-02-11 17:54:15 +0000 |
| commit | ccaf15bd0c1e14f4d90d6226d427e62a57f42e21 (patch) | |
| tree | bbe3edcc98dbff93246fac0f48bea55ed03ec8c7 /src | |
| parent | 46772c240a46d5a35bc2b6ac6a54eca487a871dd (diff) | |
| download | emacs-ccaf15bd0c1e14f4d90d6226d427e62a57f42e21.tar.gz emacs-ccaf15bd0c1e14f4d90d6226d427e62a57f42e21.zip | |
(struct buffer): Comment fix to clarify the status of Lisp fields.
Diffstat (limited to 'src')
| -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 | ||