X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-mod-scheme.cc;h=6c04c0baf92461d4a4d39b26d2bbbf7f38340062;hb=c39d188d28fdc84cef8cbaea7b8d6e2fb718c30f;hp=9c79c37859b6203b147bca35e225bfada6d4df4f;hpb=8247813bc580a90f7838846dc38aad5d49ac9d9d;p=lilypond.git diff --git a/lily/context-mod-scheme.cc b/lily/context-mod-scheme.cc index 9c79c37859..6c04c0baf9 100644 --- a/lily/context-mod-scheme.cc +++ b/lily/context-mod-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2010--2012 Jan Nieuwenhuizen + Copyright (C) 2010--2014 Jan Nieuwenhuizen Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify @@ -57,14 +57,14 @@ LY_DEFINE (ly_make_context_mod, "ly:make-context-mod", } LY_DEFINE (ly_context_mod_apply_x, "ly:context-mod-apply!", - 2, 0, 0, (SCM context, SCM mod), - "Apply the context modification @var{mod} to @var{context}.") + 2, 0, 0, (SCM context, SCM mod), + "Apply the context modification @var{mod} to @var{context}.") { LY_ASSERT_SMOB (Context, context, 1); LY_ASSERT_SMOB (Context_mod, mod, 2); apply_property_operations (unsmob_context (context), - unsmob_context_mod (mod)->get_mods ()); + unsmob_context_mod (mod)->get_mods ()); scm_remember_upto_here_1 (context); return SCM_UNSPECIFIED; }