aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStefan Monnier2008-02-11 17:54:15 +0000
committerStefan Monnier2008-02-11 17:54:15 +0000
commitccaf15bd0c1e14f4d90d6226d427e62a57f42e21 (patch)
treebbe3edcc98dbff93246fac0f48bea55ed03ec8c7 /src
parent46772c240a46d5a35bc2b6ac6a54eca487a871dd (diff)
downloademacs-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.h6
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