MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / remove-empty-staves-with-rests.ly
blobdb6153a501e44a3f28cbd592d2a000c1ad289764
1 \version "2.13.32"
2 \header {
4 texidoc = "
5 Rests should not keep staves alive when
6 @code{\RemoveEmptyStaffContext} is active. The
7 following example should have only one staff.
12 \score {
14 \new Staff {
15 \partial 16 r16 | R1 | r1
17 \new Staff {
18 \partial 16 c'16 | c'1 | c'1
22 \layout { \context { \RemoveEmptyStaffContext
23 \override VerticalAxisGroup #'remove-first = ##t } }