X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstream-event-scheme.cc;h=0ff9938863329ca0b289d60966b3a8307508a90e;hb=b8e19438b2d69674efcf408586950e384d5e4b06;hp=99f8a3c83235480f31b8d3116c257674bb1c7ef8;hpb=1c846b2c2348b4e0ca4a3c2e8fb267047ba2d203;p=lilypond.git diff --git a/lily/stream-event-scheme.cc b/lily/stream-event-scheme.cc index 99f8a3c832..0ff9938863 100644 --- a/lily/stream-event-scheme.cc +++ b/lily/stream-event-scheme.cc @@ -20,22 +20,22 @@ #include "stream-event.hh" LY_DEFINE (ly_stream_event_p, "ly:stream-event?", - 1, 0, 0, (SCM obj), - "Is @code{@var{obj}} a @code{Stream_event} object?") + 1, 0, 0, (SCM obj), + "Is @code{@var{obj}} a @code{Stream_event} object?") { return scm_from_bool (unsmob_stream_event (obj)); } LY_DEFINE (ly_make_stream_event, "ly:make-stream-event", - 1, 1, 0, (SCM cl, SCM proplist), - "Create a stream event of class @var{cl} with the given" - " mutable property list.") + 1, 1, 0, (SCM cl, SCM proplist), + "Create a stream event of class @var{cl} with the given" + " mutable property list.") { LY_ASSERT_TYPE (ly_is_symbol, cl, 1); /* should be scm_list_p, but scm_list_p is expensive. */ LY_ASSERT_TYPE (scm_is_pair, proplist, 2); - + if (proplist == SCM_UNDEFINED) proplist = SCM_EOL; @@ -43,10 +43,10 @@ LY_DEFINE (ly_make_stream_event, "ly:make-stream-event", return e->unprotect (); } -LY_DEFINE (ly_event_property, "ly:event-property", +LY_DEFINE (ly_event_property, "ly:event-property", 2, 0, 0, (SCM sev, SCM sym), - "Get the property @var{sym} of stream event @var{mus}." - " If @var{sym} is undefined, return @code{'()}.") + "Get the property @var{sym} of stream event @var{mus}." + " If @var{sym} is undefined, return @code{'()}.") { LY_ASSERT_TYPE (unsmob_stream_event, sev, 1); LY_ASSERT_TYPE (ly_is_symbol, sym, 2); @@ -62,13 +62,13 @@ LY_DEFINE (ly_event_set_property_x, "ly:event-set-property!", { LY_ASSERT_TYPE (unsmob_stream_event, ev, 1); LY_ASSERT_TYPE (ly_is_symbol, sym, 2); - + return ly_prob_set_property_x (ev, sym, val); } LY_DEFINE (ly_event_deep_copy, "ly:event-deep-copy", - 1, 0, 0, (SCM m), - "Copy @var{m} and all sub expressions of@tie{}@var{m}.") + 1, 0, 0, (SCM m), + "Copy @var{m} and all sub expressions of@tie{}@var{m}.") { SCM copy = m; if (Stream_event *ev = unsmob_stream_event (m)) @@ -78,7 +78,7 @@ LY_DEFINE (ly_event_deep_copy, "ly:event-deep-copy", } else if (scm_is_pair (m)) copy = scm_cons (ly_event_deep_copy (scm_car (m)), - ly_event_deep_copy (scm_cdr (m))); + ly_event_deep_copy (scm_cdr (m))); return copy; }