X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fcontext-scheme.cc;h=aef54047684f0d82bed80f451cfa0134be182c6b;hb=16b127866a6dc83392db2c2ad00a5fffd467b7e6;hp=d4289d7bcc69550d018517d618e256ef1030863e;hpb=92e8f758e29427d28c413d1998c895b9c61932fd;p=lilypond.git diff --git a/lily/context-scheme.cc b/lily/context-scheme.cc index d4289d7bcc..aef5404768 100644 --- a/lily/context-scheme.cc +++ b/lily/context-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 1998--2007 Jan Nieuwenhuizen + (c) 1998--2009 Jan Nieuwenhuizen Han-Wen Nienhuys */ @@ -69,14 +69,14 @@ LY_DEFINE (ly_context_pushpop_property, "ly:context-pushpop-property", } LY_DEFINE (ly_context_property, "ly:context-property", - 2, 0, 0, (SCM c, SCM name), - "Return the value of @var{name} from context @var{c}.") + 2, 0, 0, (SCM context, SCM sym), + "Return the value for property @var{sym} in @var{context}.") { - LY_ASSERT_SMOB (Context, c, 1); - LY_ASSERT_TYPE (ly_is_symbol, name, 2); + LY_ASSERT_SMOB (Context, context, 1); + LY_ASSERT_TYPE (ly_is_symbol, sym, 2); - Context *t = unsmob_context (c); - return t->internal_get_property (name); + Context *t = unsmob_context (context); + return t->internal_get_property (sym); } LY_DEFINE (ly_context_set_property_x, "ly:context-set-property!",