]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/score-scheme.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / score-scheme.cc
index f3afd1429bd69157c2b287a7e890526ec0aa67b8..7a306af442703f7faf35683c048d5863a1605363 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2005--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2005--2012 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
@@ -27,9 +27,9 @@
 #include "paper-book.hh"
 
 LY_DEFINE (ly_make_score, "ly:make-score",
-          1, 0, 0,
-          (SCM music),
-          "Return score with @var{music} encapsulated in it.")
+           1, 0, 0,
+           (SCM music),
+           "Return score with @var{music} encapsulated in it.")
 {
   LY_ASSERT_SMOB (Music, music, 1);
 
@@ -40,8 +40,8 @@ LY_DEFINE (ly_make_score, "ly:make-score",
 }
 
 LY_DEFINE (ly_score_output_defs, "ly:score-output-defs",
-          1, 0, 0, (SCM score),
-          "All output definitions in a score.")
+           1, 0, 0, (SCM score),
+           "All output definitions in a score.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   Score *sc = unsmob_score (score);
@@ -53,8 +53,8 @@ LY_DEFINE (ly_score_output_defs, "ly:score-output-defs",
 }
 
 LY_DEFINE (ly_score_add_output_def_x, "ly:score-add-output-def!",
-          2, 0, 0, (SCM score, SCM def),
-          "Add an output definition @var{def} to @var{score}.")
+           2, 0, 0, (SCM score, SCM def),
+           "Add an output definition @var{def} to @var{score}.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   LY_ASSERT_SMOB (Output_def, def, 2);
@@ -65,8 +65,8 @@ LY_DEFINE (ly_score_add_output_def_x, "ly:score-add-output-def!",
 }
 
 LY_DEFINE (ly_score_header, "ly:score-header",
-          1, 0, 0, (SCM score),
-          "Return score header.")
+           1, 0, 0, (SCM score),
+           "Return score header.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   Score *sc = unsmob_score (score);
@@ -74,12 +74,12 @@ LY_DEFINE (ly_score_header, "ly:score-header",
 }
 
 LY_DEFINE (ly_score_set_header_x, "ly:score-set-header!",
-          2, 0, 0, (SCM score, SCM module),
-          "Set the score header.")
+           2, 0, 0, (SCM score, SCM module),
+           "Set the score header.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   SCM_ASSERT_TYPE (ly_is_module (module), module, SCM_ARG2, __FUNCTION__,
-                  "module");
+                   "module");
 
   Score *sc = unsmob_score (score);
   sc->set_header (module);
@@ -87,8 +87,8 @@ LY_DEFINE (ly_score_set_header_x, "ly:score-set-header!",
 }
 
 LY_DEFINE (ly_score_music, "ly:score-music",
-          1, 0, 0, (SCM score),
-          "Return score music.")
+           1, 0, 0, (SCM score),
+           "Return score music.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   Score *sc = unsmob_score (score);
@@ -96,8 +96,8 @@ LY_DEFINE (ly_score_music, "ly:score-music",
 }
 
 LY_DEFINE (ly_score_error_p, "ly:score-error?",
-          1, 0, 0, (SCM score),
-          "Was there an error in the score?")
+           1, 0, 0, (SCM score),
+           "Was there an error in the score?")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   Score *sc = unsmob_score (score);
@@ -105,10 +105,10 @@ LY_DEFINE (ly_score_error_p, "ly:score-error?",
 }
 
 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.")
+           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.")
 {
   LY_ASSERT_SMOB (Score, score, 1);
   LY_ASSERT_SMOB (Output_def, layout, 2);