]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-to-empty-barline.ly
Remove Swallow_engraver/performer and *_swallow_translators.
[lilypond.git] / input / regression / spacing-to-empty-barline.ly
1 \version "2.12.0"
2
3 \header {
4   texidoc = "An empty barline does not confuse the spacing engine too much.
5 The two scores should look approximately the same."
6 }
7
8 \layout {
9   \context {
10     \Score
11     \accepts "Top"
12   }
13
14   \context {
15     \name "Top"
16     \alias "Staff"
17     \type "Engraver_group"
18     \consists "Output_property_engraver"
19     \consists "Bar_engraver"
20     \consists "Axis_group_engraver"
21
22     \override VerticalAxisGroup #'Y-extent = ##f
23     \override VerticalAxisGroup #'minimum-Y-extent = ##f
24     \override BarLine #'transparent = ##t
25   }
26 }
27
28 \paper {
29   ragged-right = ##t
30 }
31
32 \score {
33   <<
34     \new Top { s1 }
35     \new Staff { c''2 c''4 c''4 }
36   >>
37 }
38
39 \score {
40   { c''2 c''4 c''4 }
41 }