X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fvolta-multi-staff.ly;h=efceede7903f8324e57412e2a26141d89e18f913;hb=b872748c6aa8bb721ced458691b38ac2fac5dfc8;hp=e0e6e7c77813e781e17914a134ab7309b69dca9e;hpb=1395665466e349117f251da681262bd56c44d04e;p=lilypond.git diff --git a/input/regression/volta-multi-staff.ly b/input/regression/volta-multi-staff.ly index e0e6e7c778..efceede790 100644 --- a/input/regression/volta-multi-staff.ly +++ b/input/regression/volta-multi-staff.ly @@ -1,27 +1,22 @@ \header { - - texidoc = "By setting @code{voltaOnThisStaff}, repeats can be put on more staffs in a score." - + texidoc = "By default, the volta brackets appear only in the topmost staff." } -\version "2.1.22" +\layout { ragged-right = ##t } +\version "2.16.0" -vmus = \notes { \repeat volta 2 c1 \alternative { d e } } +vmus = { \repeat volta 2 c1 \alternative { d e } } + +\relative c'' << + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> + \new StaffGroup << + \new Staff \vmus + \new Staff \vmus + >> +>> -\score { - \notes \relative c'' << - \new StaffGroup << - \context Staff \vmus - \new Staff \vmus - >> - \new StaffGroup << - \new Staff << - \set Staff.voltaOnThisStaff = ##t - \vmus >> - \new Staff \vmus - >> - >> - \paper { raggedright = ##t } -}