X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Frepeat-fold.ly;h=7a5f1c66e2da8c312447b647e42f19b939ab184f;hb=169a91c8514e3dcea29d1aa01653a684fb60457d;hp=de2e9388fa9ebfa3c873833c452b020acd6f59c4;hpb=3db08de4502e30616808fc348b054d32822e5cc4;p=lilypond.git diff --git a/input/regression/repeat-fold.ly b/input/regression/repeat-fold.ly index de2e9388fa..7a5f1c66e2 100644 --- a/input/regression/repeat-fold.ly +++ b/input/regression/repeat-fold.ly @@ -1,19 +1,20 @@ -\version "1.7.18" +\version "2.10.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 { ragged-right = ##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 } } -}