all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Matt Armstrong <matt@rfc20.org>
To: Stefan Monnier <monnier@iro.umontreal.ca>
Cc: 58639@debbugs.gnu.org
Subject: bug#58639: 29.0.50; [noverlay] Nested overlay iteration in GC
Date: Wed, 19 Oct 2022 16:50:46 -0700	[thread overview]
Message-ID: <87wn8vmkyx.fsf@rfc20.org> (raw)
In-Reply-To: <87bkq7o3vu.fsf@rfc20.org>

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	other threads:[~2022-10-19 23:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-19 16:40 bug#58639: 29.0.50; [noverlay] Nested overlay iteration in GC Matt Armstrong
2022-10-19 17:29 ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-10-19 21:49   ` Matt Armstrong
2022-10-19 22:16     ` Matt Armstrong
2022-10-19 23:50       ` Matt Armstrong [this message]
2022-10-20  1:55         ` Stefan Monnier via Bug reports for GNU Emacs, the Swiss army knife of text editors
2022-11-12 20:58           ` Stefan Kangas
2022-11-15 17:47             ` Matt Armstrong

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87wn8vmkyx.fsf@rfc20.org \
    --to=matt@rfc20.org \
    --cc=58639@debbugs.gnu.org \
    --cc=monnier@iro.umontreal.ca \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.