]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/item-scheme.cc
Imported Upstream version 2.16.0
[lilypond.git] / lily / item-scheme.cc
index 405fe776cdf42f157f674ad50fa1328998f01b11..c316ac311e35eff0b35ec3e26695ce191adfd7cf 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2005--2011 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 2005--2012 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
 
   LilyPond is free software: you can redistribute it and/or modify
 
 #include "item.hh"
 
-
 LY_DEFINE (ly_item_p, "ly:item?",
-          1, 0, 0, (SCM g),
-          "Is @var{g} an @code{Item} object?")
+           1, 0, 0, (SCM g),
+           "Is @var{g} an @code{Item} object?")
 {
   Grob *me = unsmob_grob (g);
   bool b = dynamic_cast<Item *> (me);
@@ -31,10 +30,10 @@ 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 direction of item @var{it}.  @code{-1} means"
-          " end of line, @code{0}@tie{}unbroken, and"
-          " @code{1}@tie{}beginning of line.")
+           1, 0, 0, (SCM it),
+           "The break status direction of item @var{it}.  @w{@code{-1}} means"
+           " end of line, @code{0}@tie{}unbroken, and"
+           " @code{1}@tie{}beginning of line.")
 {
   LY_ASSERT_TYPE (unsmob_item, it, 1);
   Item *me = unsmob_item (it);