X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-mod-scheme.cc;h=a774fc7426a571135ee2467390f539659e2006ea;hb=5d84bfad4626892bcffd05adcced53c8a2329047;hp=4b3467eb20eeca15a4b3a721e94ed6a229508ed0;hpb=f296029dcb6cc6dedc364847392f2ab3862e7a28;p=lilypond.git diff --git a/lily/context-mod-scheme.cc b/lily/context-mod-scheme.cc index 4b3467eb20..a774fc7426 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--2011 Jan Nieuwenhuizen + Copyright (C) 2010--2015 Jan Nieuwenhuizen Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify @@ -26,7 +26,7 @@ LY_DEFINE (ly_get_context_mods, "ly:get-context-mods", "Returns the list of context modifications stored in" " @var{contextmod}.") { - Context_mod *tr = unsmob_context_mod (contextmod); + Context_mod *tr = unsmob (contextmod); LY_ASSERT_SMOB (Context_mod, contextmod, 1); return tr->get_mods (); } @@ -36,7 +36,7 @@ LY_DEFINE (ly_add_context_mod, "ly:add-context-mod", "Adds the given context @var{modification} to the list" " @var{contextmods} of context modifications.") { - Context_mod *ctxmod = unsmob_context_mod (contextmods); + Context_mod *ctxmod = unsmob (contextmods); LY_ASSERT_SMOB (Context_mod, contextmods, 1); ctxmod->add_context_mod (modification); return SCM_UNSPECIFIED; @@ -47,7 +47,7 @@ LY_DEFINE (ly_make_context_mod, "ly:make-context-mod", "Creates a context modification, optionally initialized" " via the list of modifications @var{mod-list}.") { - if (mod_list != SCM_UNDEFINED) + if (!SCM_UNBNDP (mod_list)) { LY_ASSERT_TYPE (ly_cheap_is_list, mod_list, 1); return Context_mod (mod_list).smobbed_copy (); @@ -55,3 +55,16 @@ LY_DEFINE (ly_make_context_mod, "ly:make-context-mod", else return Context_mod ().smobbed_copy (); } + +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}.") +{ + LY_ASSERT_SMOB (Context, context, 1); + LY_ASSERT_SMOB (Context_mod, mod, 2); + + apply_property_operations (unsmob (context), + unsmob (mod)->get_mods ()); + scm_remember_upto_here_1 (context); + return SCM_UNSPECIFIED; +}