X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Frepeat-fold.ly;h=6f13c702cc1fd2bb76f2f636ed05173fc091a680;hb=f37a2074a91b06883f2dbddd5f25e15a452c4664;hp=efb10903f95c95069c15a9556c13388312842910;hpb=11613b92019bb42418863f43de92287a64878f14;p=lilypond.git diff --git a/input/regression/repeat-fold.ly b/input/regression/repeat-fold.ly index efb10903f9..6f13c702cc 100644 --- a/input/regression/repeat-fold.ly +++ b/input/regression/repeat-fold.ly @@ -1,20 +1,20 @@ -#(ly:set-option 'old-relative) -\version "1.9.2" +\version "2.6.0" \header{ texidoc=" -Folded. This doesn't make sense without alternatives, but it works. +Folded repeat may not make sense without alternatives, and there +should not be more alternatives than repeats. " } -\score { - \context Staff \notes \relative c'' { - \repeat fold 3 { c^"3$\\times$ 0alt" d } +\paper { raggedright = ##t } + +\context Staff \relative c'' { + \repeat fold 3 { c^"3x 0alt" d } % less alts than body - \repeat fold 4 { c^"4$\\times$ 2alt" d } \alternative { e f } + \repeat fold 4 { c^"4x 2alt" d } \alternative { e f } % more alts than body - \repeat fold 2 { c^"2$\\times$ 3alt" d } \alternative { e f g } + \repeat fold 2 { c^"2x 3alt" d } \alternative { e f g } } -}