X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fkeys.ly;h=209a3469f1f075e24cff45e16b2c590ea5e0d507;hb=b872748c6aa8bb721ced458691b38ac2fac5dfc8;hp=86b207e0d1b8288e85d3f97434c7dfea4b205442;hpb=e9bd265943d37689b1a6892217cb6f67bbe69f73;p=lilypond.git diff --git a/input/regression/keys.ly b/input/regression/keys.ly index 86b207e0d1..209a3469f1 100644 --- a/input/regression/keys.ly +++ b/input/regression/keys.ly @@ -1,29 +1,31 @@ -#(ly:set-option 'old-relative) -\version "1.9.1" + +\version "2.19.21" \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 - \key bes \major c2 -% \key c \major % \minor +\paper { + ragged-right = ##T +} + +\relative +{ + \set Staff.createKeyOnClefChange = ##t + \key bes \major c'2 + % \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 . -1) (4 . -1)) - e2 - } + \set Staff.keyAlterations = #`((4 . ,FLAT) (6 . ,THREE-Q-SHARP) (2 . ,SEMI-FLAT)) + e2 }