X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fstream-event-scheme.cc;h=99f8a3c83235480f31b8d3116c257674bb1c7ef8;hb=617d9d75379510103b6a5ffa43e33c6936493e22;hp=3d569960ed381adbe57220d8e8bb3b5fa8d88388;hpb=bc95f4434f760d41191341ab4508b2064eb19025;p=lilypond.git diff --git a/lily/stream-event-scheme.cc b/lily/stream-event-scheme.cc index 3d569960ed..99f8a3c832 100644 --- a/lily/stream-event-scheme.cc +++ b/lily/stream-event-scheme.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2006--2010 Erik Sandberg + Copyright (C) 2006--2011 Erik Sandberg LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,6 +19,13 @@ #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?") +{ + 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" @@ -41,7 +48,7 @@ LY_DEFINE (ly_event_property, "ly:event-property", "Get the property @var{sym} of stream event @var{mus}." " If @var{sym} is undefined, return @code{'()}.") { - LY_ASSERT_SMOB (Stream_event, sev, 1); + LY_ASSERT_TYPE (unsmob_stream_event, sev, 1); LY_ASSERT_TYPE (ly_is_symbol, sym, 2); Stream_event *e = unsmob_stream_event (sev); @@ -53,7 +60,7 @@ LY_DEFINE (ly_event_set_property_x, "ly:event-set-property!", 3, 0, 0, (SCM ev, SCM sym, SCM val), "Set property @var{sym} in event @var{ev} to @var{val}.") { - LY_ASSERT_SMOB (Stream_event, ev, 1); + 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);