Update .ly files.
[lilypond.git] / input / regression / spacing-folded-clef2.ly
blobd272a005e18edc987133394e009de61bd24b9ac6
1 \version "2.12.0"
2 \header {
4 texidoc = "A clef can be folded below notes in a different staff, if
5 there is space enough. With @code{Paper_column} stencil callbacks we
6 can show where columns are in the score."
9 \layout {
10 ragged-right = ##t
12 \context {
13 \Score
14 \override NonMusicalPaperColumn #'stencil = #ly:paper-column::print
15 \override PaperColumn #'stencil = #ly:paper-column::print
16 \override NonMusicalPaperColumn #'font-family = #'roman
17 \override PaperColumn #'font-family = #'roman
22 \relative c'' <<
23 \new Staff { c4 c4 c4 c \bar "|." }
24 \new Staff { \clef bass c,2 \clef treble c'2 }