]> git.eshelyaron.com Git - emacs.git/commitdiff
Comment change.
authorRichard M. Stallman <rms@gnu.org>
Sat, 21 Dec 2002 17:59:27 +0000 (17:59 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 21 Dec 2002 17:59:27 +0000 (17:59 +0000)
src/alloc.c

index 29cb1de5826958b8ecda7b7445a4ed2711a85603..5cb34b9ed45f60eb1ae17ac998a02ca2712d0398 100644 (file)
@@ -341,7 +341,12 @@ int dont_register_blocks;
 
 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;