X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fphrasing-slur-multiple.ly;h=adf8221845b9a8077eca0c446bb161607f51aee3;hb=79c17e0eaedca79e5f7605f5b9f92db27c68e679;hp=dc1edfc44ae27043593b822d8838679ffd973e5d;hpb=d1268d3c8de1cbfee0c878265450f9a4b3492805;p=lilypond.git diff --git a/input/regression/phrasing-slur-multiple.ly b/input/regression/phrasing-slur-multiple.ly index dc1edfc44a..adf8221845 100644 --- a/input/regression/phrasing-slur-multiple.ly +++ b/input/regression/phrasing-slur-multiple.ly @@ -1,4 +1,4 @@ -\version "2.15.40" +\version "2.19.29" #(ly:set-option 'warning-as-error #f) #(ly:expect-warning (_ "already have phrasing slur")) @@ -12,14 +12,10 @@ slur will not be generated. However, one can can create a second slur with a different spanner-id." } -sp=#(define-event-function (parser location n e) (index? ly:event?) - (set! (ly:music-property e 'spanner-id) (format "sp~a" n)) - e) - -\relative c'' { +\relative { % This will give warnings ("Already have phrasing slur" and "Cannot end phrasing slur") - c4\(\(\sp1\( d4\)\(\sp1\( e4\) f\) | + c''4\(\(\=1\( d4\)\(\=1\( e4\) f\) | % This will give two overlapping slurs and "unterminated phrasing slur" from above - d\( d\sp2\( e\) f\sp2\) | + d\( d\=2\( e\) f\=2\) | }