]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-scheme.cc
Nitpick run.
[lilypond.git] / lily / score-scheme.cc
index df8b920956659a2d6df3b6044ea2d01c89828c0b..ae8d014470ab83c8810bb0e76be5342a21cf7b46 100644 (file)
@@ -13,7 +13,6 @@
 #include "global-context.hh"
 #include "lilypond-key.hh"
 
-
 LY_DEFINE (ly_make_score, "ly:make-score",
           1, 0, 0,
           (SCM music),
@@ -21,7 +20,7 @@ LY_DEFINE (ly_make_score, "ly:make-score",
 {
   Music *mus = unsmob_music (music);
   SCM_ASSERT_TYPE (mus, music, SCM_ARG1, __FUNCTION__, "music");
-  
+
   Score *score = new Score;
   score->set_music (music);
 
@@ -88,7 +87,7 @@ LY_DEFINE (ly_score_process, "ly:score-process",
                   default_header, SCM_ARG3, __FUNCTION__, "\\paper block");
   SCM_ASSERT_TYPE (unsmob_output_def (default_layout),
                   default_header, SCM_ARG4, __FUNCTION__, "\\layout block");
-  
+
   Object_key *key = new Lilypond_general_key (0, score->user_key_, 0);
 
   if (score->error_found_)
@@ -97,7 +96,7 @@ LY_DEFINE (ly_score_process, "ly:score-process",
   SCM header = ly_is_module (score->header_)
     ? score->header_
     : default_header;
-  
+
   for (int i = 0; i < score->defs_.size (); i++)
     default_rendering (score->get_music (), score->defs_[i]->self_scm (),
                       default_paper, header, basename, key->self_scm ());
@@ -114,4 +113,3 @@ LY_DEFINE (ly_score_process, "ly:score-process",
   return SCM_UNSPECIFIED;
 }
 
-