]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/repeated-music.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / repeated-music.cc
index becbbfcb5b55f6c45cf0200234fd4fcaa49d8899..13e12df2a48af8f8bcc61540b64658a7649c0a2e 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  repeated-music.cc -- implement Repeated_music
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1999--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1999--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "repeated-music.hh"
@@ -34,16 +45,16 @@ Repeated_music::relative_callback (SCM music, SCM pitch)
     {
       Music *body = unsmob_music (me->get_property ("element"));
       if (body)
-       p = body->to_relative_octave (p);
+        p = body->to_relative_octave (p);
 
       Pitch last = p;
       SCM alternatives = me->get_property ("elements");
 
       for (SCM s = alternatives; scm_is_pair (s); s = scm_cdr (s))
-       {
-         lily_1_8_compatibility_used = true;
-         unsmob_music (scm_car (s))->to_relative_octave (p);
-       }
+        {
+          lily_1_8_compatibility_used = true;
+          unsmob_music (scm_car (s))->to_relative_octave (p);
+        }
 
       return last.smobbed_copy ();
     }
@@ -72,7 +83,7 @@ Repeated_music::alternatives_get_length (Music *me, bool fold)
       m = m + unsmob_music (scm_car (p))->get_length ();
       done++;
       if (count - done < len)
-       p = scm_cdr (p);
+        p = scm_cdr (p);
     }
   return m;
 }
@@ -156,7 +167,7 @@ Repeated_music::first_start (SCM m)
   Music *body = unsmob_music (me->get_property ("element"));
 
   Moment rv = (body) ? body->start_mom ()
-    : Music_sequence::first_start (me->get_property ("elements"));
+              : Music_sequence::first_start (me->get_property ("elements"));
 
   return rv.smobbed_copy ();
 }