changeset 48907:3bf6323fe318

Comment change.
author Richard M. Stallman <rms@gnu.org>
date Sat, 21 Dec 2002 17:59:27 +0000
parents 141c4fba25c0
children d5680dc3113e
files src/alloc.c
diffstat 1 files changed, 6 insertions(+), 1 deletions(-) [+]
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;