]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/dynamics-custom-text-spanner-postfix.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / dynamics-custom-text-spanner-postfix.ly
index ee4132b80c0681662078a9d59c03effc6e8c7503..15c3d2510a47465dcf09775c3c2079e2cc94ec29 100644 (file)
@@ -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))