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 | 9ce376f9dee9e184c4baf06908f05b45d4075a9f (patch) | |
tree | abbe9ef5a330c316963fc7ee07aed0b78c47495b /src/alloc.c | |
parent | ccaf15bd0c1e14f4d90d6226d427e62a57f42e21 (diff) | |
download | emacs-9ce376f9dee9e184c4baf06908f05b45d4075a9f.tar.gz emacs-9ce376f9dee9e184c4baf06908f05b45d4075a9f.tar.bz2 emacs-9ce376f9dee9e184c4baf06908f05b45d4075a9f.zip |
(mark_buffer): Comment fix to clarify the status of Lisp fields.
Diffstat (limited to 'src/alloc.c')
-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++) |