From 45bad89b8c2f4530b75e1ee73cf92ad771e14740 Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Tue, 24 Nov 2015 17:05:14 +0100 Subject: [PATCH] Issue 4670: Percent_repeat_iterator's derived_mark is incomplete It needs to also call the derived_mark of its base class Sequential_iterator. This is an oversight from issue 3693. --- lily/percent-repeat-iterator.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/lily/percent-repeat-iterator.cc b/lily/percent-repeat-iterator.cc index 00d8eed88b..3c8420daa0 100644 --- a/lily/percent-repeat-iterator.cc +++ b/lily/percent-repeat-iterator.cc @@ -51,6 +51,7 @@ void Percent_repeat_iterator::derived_mark () const { scm_gc_mark (child_list_); + Sequential_iterator::derived_mark (); } void -- 2.39.5