diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-02-11 17:54:46 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2008-02-11 17:54:46 +0000 |
commit | 57aef7e7f170e003db28a59340570de1eaef8f74 (patch) | |
tree | bf1d499a9f1803beac0c218e07b380987f6cd648 | |
parent | f6e134efa6843ecb0ab031a2e5715523bfd3a7ea (diff) | |
download | emacs-57aef7e7f170e003db28a59340570de1eaef8f74.tar.gz |
(mark_buffer): Comment fix to clarify the status of Lisp fields.
-rw-r--r-- | src/alloc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/alloc.c b/src/alloc.c index c1ebd0cf2a3..68fc5d9d2a7 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -5735,6 +5735,8 @@ mark_buffer (buf) mark_object (tmp); } + /* buffer-local Lisp variables start at `undo_list', + tho only the ones from `name' on are GC'd normally. */ for (ptr = &buffer->name; (char *)ptr < (char *)buffer + sizeof (struct buffer); ptr++) |