From d1563a5187e6176f73d62291d0f941ff892162df Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Wed, 8 Feb 2012 10:53:38 +0100 Subject: [PATCH] Stop EventChord iterator from replaying the "events" property. It does not make sense for a music event to contain stream events, and this feature appears to be completely unused in the code base. --- lily/event-chord-iterator.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lily/event-chord-iterator.cc b/lily/event-chord-iterator.cc index 899287a999..b71a0ff563 100644 --- a/lily/event-chord-iterator.cc +++ b/lily/event-chord-iterator.cc @@ -49,12 +49,6 @@ Event_chord_iterator::process (Moment m) Music *mus = unsmob_music (scm_car (s)); report_event (mus); } - for (SCM s = get_music ()->get_property ("events"); - scm_is_pair (s); s = scm_cdr (s)) - { - Stream_event *ev = unsmob_stream_event (scm_car (s)); - get_outlet ()->event_source ()->broadcast (ev); - } } Simple_music_iterator::process (m); } -- 2.39.2