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: Stefan Monnier
Subject: bug#58639: 29.0.50; [noverlay] Nested overlay iteration in GC
Date: Wed, 19 Oct 2022 21:55:53 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux)

Matt Armstrong [2022-10-19 16:50:46] wrote:
> 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.

I was wondering if you had mistyped ITREE_NULL or if it was indeed
a "preview" of what was coming :-)

In any case, thanks for those patches, it's a really nice improvement.

        Stefan






reply via email to

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