X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstream-event-scheme.cc;h=bdccd1483b7c26d2d50bc930448fd2a3516bcc66;hb=9f3572d98bb948c9689cd1f75401a029451fa001;hp=ea9365496187c371bbe721be6b72906b1b8586f2;hpb=04265f11d1f21416ccebd2dcaa1d903dc781b36e;p=lilypond.git diff --git a/lily/stream-event-scheme.cc b/lily/stream-event-scheme.cc index ea93654961..bdccd1483b 100644 --- a/lily/stream-event-scheme.cc +++ b/lily/stream-event-scheme.cc @@ -9,21 +9,15 @@ #include "stream-event.hh" LY_DEFINE (ly_make_stream_event, "ly:make-stream-event", - 1, 1, 0, (SCM cl, SCM proplist), - "Creates a stream event of class @var{cl} with the given mutable property list.\n" ) + 1, 0, 0, (SCM proplist), + "Creates a stream event, with the given property list.\n" ) { - SCM_ASSERT_TYPE (scm_is_symbol (cl), cl, SCM_ARG1, __FUNCTION__, "symbol"); - if (proplist != SCM_UNDEFINED) - { - SCM_ASSERT_TYPE (scm_list_p (proplist), proplist, SCM_ARG2, __FUNCTION__, "association list"); - } - else - proplist = SCM_EOL; - Stream_event *e = new Stream_event (cl, proplist); + SCM_ASSERT_TYPE (scm_list_p (proplist), proplist, SCM_ARG1, __FUNCTION__, "association list"); + Stream_event *e = new Stream_event (proplist); return e->unprotect (); } -LY_DEFINE (ly_event_property, "ly:event-property", +LY_DEFINE (ly_stream_event_property, "ly:stream-event-property", 2, 0, 0, (SCM sev, SCM sym), "Get the property @var{sym} of stream event @var{mus}.\n" "If @var{sym} is undefined, return @code{' ()}.\n") @@ -34,11 +28,3 @@ LY_DEFINE (ly_event_property, "ly:event-property", return e->internal_get_property (sym); } - -LY_DEFINE (ly_event_set_property, "ly:event-set-property!", - 3, 0, 0, (SCM ev, SCM sym, SCM val), - "Set property @var{sym} in event @var{ev} to @var{val}."){ - Stream_event *sc = unsmob_stream_event (ev); - SCM_ASSERT_TYPE (sc, ev, SCM_ARG1, __FUNCTION__, "event"); - return ly_prob_set_property_x (ev, sym, val); -}