X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fkeys.ly;h=5fca40bf7d12a6bed4671f9101a58af3e17266a8;hb=8864a7cc89abc6d910896aa4681e89fd71c5e4f1;hp=8a9856f9ba21e499a8cf38608a74866529a0baf7;hpb=d2e7425b88e579fe53989106965fa13eab551c92;p=lilypond.git diff --git a/input/regression/keys.ly b/input/regression/keys.ly index 8a9856f9ba..5fca40bf7d 100644 --- a/input/regression/keys.ly +++ b/input/regression/keys.ly @@ -1,29 +1,31 @@ -\version "1.9.8" +\version "2.14.0" \header{ texidoc=" -Key signatures appear on key changes. They may also -appear without barlines. The restoration accidentals are not printed at -the start of the line. If @code{createKeyOnClefChange} is set, they're -also created on a clef change. +Key signatures may appear on key changes, even without a barline. +In the case of a line break, the restoration accidentals are printed at +end of a line. If @code{createKeyOnClefChange} is set, key signatures +are created also on a clef change. " } -\score { - \notes \relative c'' - { - \property Staff. createKeyOnClefChange = ##t +\paper { + ragged-right = ##T +} + +\relative +{ + \set Staff.createKeyOnClefChange = ##t \key bes \major c2 -% \key c \major % \minor + % \key c \major % \minor \key es \major % \minor c2 \break \key bes \major % \major c2 \clef alto c2 \key d \major \clef treble c2 - \property Staff. keySignature = #'((2 . -1) (6 . 3) (4 . -2)) - e2 - } + \set Staff.keySignature = #`((4 . ,FLAT) (6 . ,THREE-Q-SHARP) (2 . ,SEMI-FLAT)) + e2 }