X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fdynamics-custom-text-spanner-postfix.ly;h=15c3d2510a47465dcf09775c3c2079e2cc94ec29;hb=fb2041257a9f00d4dbfab1766beefc0ef1425ea4;hp=ee4132b80c0681662078a9d59c03effc6e8c7503;hpb=d36171e34d236d890f5dc511b895037188c6c7cb;p=lilypond.git diff --git a/input/regression/dynamics-custom-text-spanner-postfix.ly b/input/regression/dynamics-custom-text-spanner-postfix.ly index ee4132b80c..15c3d2510a 100644 --- a/input/regression/dynamics-custom-text-spanner-postfix.ly +++ b/input/regression/dynamics-custom-text-spanner-postfix.ly @@ -1,4 +1,4 @@ -\version "2.19.21" +\version "2.19.22" \header { texidoc = "Postfix functions for custom crescendo text spanners. The spanners @@ -8,10 +8,10 @@ otherwise the spanner start will rather be assigned to the next note." % Two functions for (de)crescendo spanners where you can explicitly give the % spanner text. -mycresc = #(define-music-function (parser location mymarkup) (string?) +mycresc = #(define-music-function (mymarkup) (string?) (make-music 'CrescendoEvent 'span-direction START 'span-type 'text 'span-text mymarkup)) -mydecresc = #(define-music-function (parser location mymarkup) (string?) +mydecresc = #(define-music-function (mymarkup) (string?) (make-music 'DecrescendoEvent 'span-direction START 'span-type 'text 'span-text mymarkup))