bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#58639: 29.0.50; [noverlay] Nested overlay iteration in GC


From: Matt Armstrong
Subject: bug#58639: 29.0.50; [noverlay] Nested overlay iteration in GC
Date: Wed, 19 Oct 2022 16:50:46 -0700

Matt Armstrong <matt@rfc20.org> writes:

> +static void
> +mark_overlays (struct interval_node *node)
> +{
> +  if (node == NULL)
> +    return;
> +  mark_object (node->data);
> +  mark_overlays (node->left);
> +  mark_overlays (node->right);
> +}

Heads up the 'node == NULL' above depends on the patch I sent you to get
rid of ITREE_NULL.

-- 
matt (sent from an Emacs running the feature/noverlay branch)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]