# HG changeset patch # User Richard M. Stallman # Date 1040493567 0 # Node ID 3bf6323fe3189faf8c3e68f19d29ee1ccdf9b572 # Parent 141c4fba25c08f9f1385a50b17235cbbf691abce Comment change. diff -r 141c4fba25c0 -r 3bf6323fe318 src/alloc.c --- 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;