aboutsummaryrefslogtreecommitdiffstats
path: root/src/alloc.c
diff options
context:
space:
mode:
authorRichard M. Stallman2002-12-21 17:59:27 +0000
committerRichard M. Stallman2002-12-21 17:59:27 +0000
commit9f7d9210189689aab2787879d65f58a8abdfb208 (patch)
tree37e312295a522fc6d76e168fec096a561905b405 /src/alloc.c
parentc3a3229c39e435b7b3744d5dc9474189d87477da (diff)
downloademacs-9f7d9210189689aab2787879d65f58a8abdfb208.tar.gz
emacs-9f7d9210189689aab2787879d65f58a8abdfb208.zip
Comment change.
Diffstat (limited to 'src/alloc.c')
-rw-r--r--src/alloc.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c
index 29cb1de5826..5cb34b9ed45 100644
--- a/src/alloc.c
+++ b/src/alloc.c
@@ -341,7 +341,12 @@ int dont_register_blocks;
341 341
342struct mem_node 342struct mem_node
343{ 343{
344 struct mem_node *left, *right, *parent; 344 /* Children of this node. These pointers are never NULL. When there
345 is no child, the value is MEM_NIL, which points to a dummy node. */
346 struct mem_node *left, *right;
347
348 /* The parent of this node. In the root node, this is NULL. */
349 struct mem_node *parent;
345 350
346 /* Start and end of allocated region. */ 351 /* Start and end of allocated region. */
347 void *start, *end; 352 void *start, *end;