X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=lily%2Fsystem-scheme.cc;h=37ec8b05496a22ac1531ce90a6e81ea5a22ac11a;hb=c39943f60cffe2084c2f571fa838f0e34f89419b;hp=d0b7cfc9b25c8093206438fdd8d54db260d614ad;hpb=c3ff1c6cd20e15e9036ee7120012e05b1d62a46d;p=lilypond.git diff --git a/lily/system-scheme.cc b/lily/system-scheme.cc index d0b7cfc9b2..37ec8b0549 100644 --- a/lily/system-scheme.cc +++ b/lily/system-scheme.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2007 Joe Neeman + (c) 2007--2009 Joe Neeman */ #include "align-interface.hh" @@ -13,8 +13,8 @@ LY_DEFINE (ly_system_print, "ly:system-print", 1, 0, 0, (SCM system), - "Draw the system and return the prob containing its " - "stencil.") + "Draw the system and return the prob containing its" + " stencil.") { Grob *me = unsmob_grob (system); System *me_system = dynamic_cast (me); @@ -25,9 +25,9 @@ LY_DEFINE (ly_system_print, "ly:system-print", LY_DEFINE (ly_system_stretch, "ly:system-stretch", 2, 0, 0, (SCM system, SCM amount_scm), - "Stretch the system vertically by the given amount. " - "This must be called before the system is drawn (for example " - "with ly:system-print).") + "Stretch the system vertically by the given amount." + " This must be called before the system is drawn (for example" + " with @code{ly:system-print}).") { Grob *me = unsmob_grob (system); Real amount = robust_scm2double (amount_scm, 0.0);