1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-24 07:20:37 +00:00

Comment change.

This commit is contained in:
Richard M. Stallman 2002-12-21 17:59:27 +00:00
parent c3a3229c39
commit 9f7d921018

View 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;