From: Erik Sandberg Date: Tue, 16 May 2006 16:13:52 +0000 (+0000) Subject: fixed error X-Git-Tag: release/2.9.5~6 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=882f02a78bacf9ce981f4128ad062eca1c4417b0;p=lilypond.git fixed error --- diff --git a/lily/context.cc b/lily/context.cc index 3eef6e51ea..010e07798b 100644 --- a/lily/context.cc +++ b/lily/context.cc @@ -262,8 +262,7 @@ Context::create_context (Context_def *cdef, ly_symbol2scm ("unique"), scm_int2num (unique), ly_symbol2scm ("ops"), ops, ly_symbol2scm ("type"), cdef->get_context_name (), - ly_symbol2scm ("id"), scm_makfrom0str (id.c_str ()), - 0); + ly_symbol2scm ("id"), scm_makfrom0str (id.c_str ())); return new_context; } @@ -346,6 +345,11 @@ Context::internal_get_property (SCM sym) const return val; } +/* +Called by the send_stream_event macro. props is a 0-terminated array of +properties and corresponding values, interleaved. This method should not +be called from any other place than the send_stream_event macro. +*/ void Context::internal_send_stream_event (SCM type, SCM props[]) {