]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/event-chord-iterator.cc
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / lily / event-chord-iterator.cc
index a22c9ace6b37c850df369298f773ba5ecbeb95aa..4cda2d62bc210ef323fb626b7801777d30d7a983 100644 (file)
@@ -44,17 +44,17 @@ Event_chord_iterator::process (Moment m)
   if (last_processed_mom_ < Moment (0))
     {
       for (SCM s = get_music ()->get_property ("elements");
-          scm_is_pair (s); s = scm_cdr (s))
-       {
-         Music *mus = unsmob_music (scm_car (s));
-         report_event (mus);
-       }
+           scm_is_pair (s); s = scm_cdr (s))
+        {
+          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);
-       }
+           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);
 }