Mercurial > emacs
diff src/alloc.c @ 48907:3bf6323fe318
Comment change.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Sat, 21 Dec 2002 17:59:27 +0000 |
| parents | 043dddbc037a |
| children | cea2e52c7ca5 |
line wrap: on
line diff
--- a/src/alloc.c Sat Dec 21 17:56:16 2002 +0000 +++ b/src/alloc.c Sat Dec 21 17:59:27 2002 +0000 @@ -341,7 +341,12 @@ struct mem_node { - struct mem_node *left, *right, *parent; + /* Children of this node. These pointers are never NULL. When there + is no child, the value is MEM_NIL, which points to a dummy node. */ + struct mem_node *left, *right; + + /* The parent of this node. In the root node, this is NULL. */ + struct mem_node *parent; /* Start and end of allocated region. */ void *start, *end;
