X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fscore-scheme.cc;h=9881bf3d4a68f1b1bacf3e05f45e28cafc009efb;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=d52b25f0961b90b88b7138aaab1cb9456d23d8dc;hpb=975e6b08be391034ae6c8eec8669cbcedc266df9;p=lilypond.git diff --git a/lily/score-scheme.cc b/lily/score-scheme.cc index d52b25f096..9881bf3d4a 100644 --- a/lily/score-scheme.cc +++ b/lily/score-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2007 Han-Wen Nienhuys + (c) 2005--2008 Han-Wen Nienhuys */ #include "score.hh" @@ -59,7 +59,21 @@ LY_DEFINE (ly_score_header, "ly:score-header", { LY_ASSERT_SMOB (Score, score, 1); Score *sc = unsmob_score (score); - return sc->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.") +{ + 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; }