X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fitem-scheme.cc;h=b8fab025280f94b36e55f5c3a23a6f3d922b9605;hb=5b4b0d6e9a197e8f9eb085b7c2ad78b8be3e5cfc;hp=bbb595d10e889f41b00295b3ee4a2a0cb6aa4b22;hpb=92918346012f79ef9109ef0c391947af2d3165ca;p=lilypond.git diff --git a/lily/item-scheme.cc b/lily/item-scheme.cc index bbb595d10e..b8fab02528 100644 --- a/lily/item-scheme.cc +++ b/lily/item-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2005--2007 Han-Wen Nienhuys + (c) 2005--2008 Han-Wen Nienhuys */ @@ -21,10 +21,11 @@ LY_DEFINE (ly_item_p, "ly:item?", LY_DEFINE (ly_item_break_dir, "ly:item-break-dir", 1, 0, 0, (SCM it), - "The break status dir of item @var{it}. @code{-1} is end of " - "line, @code{0} unbroken, and @code{1} begin of line.") + "The break status direction of item @var{it}. @code{-1} means" + " end of line, @code{0}@tie{}unbroken, and" + " @code{1}@tie{}beginning of line.") { - LY_ASSERT_FIRST_TYPE (unsmob_item, it); + LY_ASSERT_TYPE (unsmob_item, it, 1); Item *me = unsmob_item (it); return scm_from_int (me->break_status_dir ()); }