]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-scheme.cc
Imported Upstream version 2.14.2
[lilypond.git] / lily / score-scheme.cc
index c3cf1224112d7111414fda00c1d954dab1183881..f3afd1429bd69157c2b287a7e890526ec0aa67b8 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  score-scheme.cc -- implement Score bindings.
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2005--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 2005--2009 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 "score.hh"
@@ -18,7 +29,7 @@
 LY_DEFINE (ly_make_score, "ly:make-score",
           1, 0, 0,
           (SCM music),
-          "Return score with @var{music} encapsulated in @var{score}.")
+          "Return score with @var{music} encapsulated in it.")
 {
   LY_ASSERT_SMOB (Music, music, 1);
 
@@ -62,7 +73,6 @@ LY_DEFINE (ly_score_header, "ly:score-header",
   return sc->get_header ();
 }
 
-
 LY_DEFINE (ly_score_set_header_x, "ly:score-set-header!",
           2, 0, 0, (SCM score, SCM module),
           "Set the score header.")
@@ -70,13 +80,12 @@ LY_DEFINE (ly_score_set_header_x, "ly:score-set-header!",
   LY_ASSERT_SMOB (Score, score, 1);
   SCM_ASSERT_TYPE (ly_is_module (module), module, SCM_ARG2, __FUNCTION__,
                   "module");
-  
+
   Score *sc = unsmob_score (score);
   sc->set_header (module);
   return SCM_UNSPECIFIED;
 }
 
-
 LY_DEFINE (ly_score_music, "ly:score-music",
           1, 0, 0, (SCM score),
           "Return score music.")
@@ -99,8 +108,7 @@ LY_DEFINE (ly_score_embedded_format, "ly:score-embedded-format",
           2, 0, 0, (SCM score, SCM layout),
           "Run @var{score} through @var{layout} (an output definition)"
           " scaled to correct output-scale already, returning a list of"
-          " layout-lines.  This function takes an optional"
-          " @code{Object_key} argument.")
+          " layout-lines.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   LY_ASSERT_SMOB (Output_def, layout, 2);