]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/unfolded-repeat-iterator.cc
Grand fixcc.py run on all .hh .cc files.
[lilypond.git] / lily / unfolded-repeat-iterator.cc
index 7ee50cbfe6e42ba85155dbef8e02a02fef7e194a..737b4a29b49f78753327aae2302d139affac4a42 100644 (file)
@@ -43,18 +43,18 @@ Unfolded_repeat_iterator::get_music_list () const
   for (int i = 0; i < rep_count; i++)
     {
       if (unsmob_music (body))
-       *tail = scm_cons (body, SCM_EOL);
+        *tail = scm_cons (body, SCM_EOL);
 
       tail = SCM_CDRLOC (*tail);
 
       if (alt_count)
-       {
-         *tail = scm_cons (scm_car (alts), SCM_EOL);
-         tail = SCM_CDRLOC (*tail);
-         if (i >= rep_count - alt_count)
+        {
+          *tail = scm_cons (scm_car (alts), SCM_EOL);
+          tail = SCM_CDRLOC (*tail);
+          if (i >= rep_count - alt_count)
 
-           alts = scm_cdr (alts);
-       }
+            alts = scm_cdr (alts);
+        }
     }
 
   return l;