X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fspanner-scheme.cc;h=d47e4f028509419217d888a2777f156204aa0c79;hb=3417b5edd0596f128bc5faca6c600c3b11915709;hp=097bdf0290b6cd2717f452535db67388b7451b07;hpb=0387f04497978e37b335a8b99eec905499d6ad0f;p=lilypond.git diff --git a/lily/spanner-scheme.cc b/lily/spanner-scheme.cc index 097bdf0290..d47e4f0285 100644 --- a/lily/spanner-scheme.cc +++ b/lily/spanner-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2007--2008 Han-Wen Nienhuys + (c) 2007--2009 Han-Wen Nienhuys */ @@ -11,14 +11,14 @@ #include "item.hh" LY_DEFINE (ly_spanner_bound, "ly:spanner-bound", - 2, 0, 0, (SCM slur, SCM dir), - "Get one of the bounds of @var{slur}. @var{dir} is @code{-1}" + 2, 0, 0, (SCM spanner, SCM dir), + "Get one of the bounds of @var{spanner}. @var{dir} is @code{-1}" " for left, and @code{1} for right.") { - LY_ASSERT_TYPE (unsmob_spanner, slur, 1); - LY_ASSERT_TYPE (is_direction, dir,2); + LY_ASSERT_TYPE (unsmob_spanner, spanner, 1); + LY_ASSERT_TYPE (is_direction, dir, 2); - return unsmob_spanner (slur)->get_bound (to_dir (dir))->self_scm (); + return unsmob_spanner (spanner)->get_bound (to_dir (dir))->self_scm (); } /* TODO: maybe we should return a vector -- random access is more