X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fmusic-function-scheme.cc;h=c22634f1522d370fd5fd099a1c4485c01f35291a;hb=905473989ebcecca6922afcf6161c5c24a8e0282;hp=828929994a93515b22840709f5a5efdcda65d28c;hpb=c5a3f0c024f4cb629811cff9eb04abff36e94138;p=lilypond.git diff --git a/lily/music-function-scheme.cc b/lily/music-function-scheme.cc index 828929994a..c22634f152 100644 --- a/lily/music-function-scheme.cc +++ b/lily/music-function-scheme.cc @@ -2,14 +2,14 @@ LY_DEFINE (ly_music_function_p, "ly:music-function?", 1, 0, 0, (SCM x), - "Is @var{x} an @code{music-function}?") + "Is @var{x} a @code{music-function}?") { return is_music_function (x) ? SCM_BOOL_T : SCM_BOOL_F; } LY_DEFINE (ly_music_function_extract, "ly:music-function-extract", 1, 0, 0, (SCM x), - "Return the Scheme function inside @var{x}") + "Return the Scheme function inside@tie{}@var{x}.") { LY_ASSERT_TYPE (is_music_function, x, 1); @@ -18,10 +18,11 @@ LY_DEFINE (ly_music_function_extract, "ly:music-function-extract", 1, 0, 0, LY_DEFINE (ly_make_music_function, "ly:make-music-function", 2, 0, 0, (SCM signature, SCM func), - "Make a function to process music, to be used for the " - "parser. @code{func} is the function, and @code{signature} describes " - "Its arguments. @code{signature} is a list containing either " - "@code{ly:music?} predicates or other type predicates.") + "Make a function to process music, to be used for the" + " parser. @code{func} is the function, and @code{signature}" + " describes its arguments. @code{signature} is a list" + " containing either @code{ly:music?} predicates or other type" + " predicates.") { LY_ASSERT_TYPE (ly_is_procedure, func, 1); return make_music_function (signature, func);