X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fmusic-function.ly;h=c571b2f3ab3d7b298a22e53929764597aa46f366;hb=79c17e0eaedca79e5f7605f5b9f92db27c68e679;hp=b0fa37edf8b93c55cdeb90de09788bc75d2b1bd7;hpb=2087c46eaf12eaf884dad2da49ebd1183b9941d7;p=lilypond.git diff --git a/input/regression/music-function.ly b/input/regression/music-function.ly index b0fa37edf8..c571b2f3ab 100644 --- a/input/regression/music-function.ly +++ b/input/regression/music-function.ly @@ -1,15 +1,15 @@ \header { - + texidoc = "Music functions are generic music transformation functions, which can be used to extend music syntax seamlessly. Here we demonstrate a @code{\\myBar} function, which works similar to @code{\\bar}, but is implemented completely in Scheme." } -\version "2.12.0" +\version "2.19.22" -myBar = #(define-music-function (parser location bar-type) (string?) +myBar = #(define-music-function (bar-type) (string?) (context-spec-music (context-spec-music (make-property-set 'whichBar bar-type) 'Timing) 'Score)) @@ -17,6 +17,6 @@ myBar = #(define-music-function (parser location bar-type) (string?) \layout { ragged-right = ##t } { - d4 \myBar "|:" d4 + d4 \myBar ".|:" d4 }