X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fkeys.ly;h=0a071d9bd6e55d7b7ab99f28bb5479de14747749;hb=43877c88a9aa5597d40f8eaa98ca01bece52f754;hp=366a22903ae477fb991322075dd18f0983fade2b;hpb=3db08de4502e30616808fc348b054d32822e5cc4;p=lilypond.git diff --git a/input/regression/keys.ly b/input/regression/keys.ly index 366a22903a..0a071d9bd6 100644 --- a/input/regression/keys.ly +++ b/input/regression/keys.ly @@ -1,28 +1,31 @@ -\version "1.7.18" + +\version "2.10.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 . -1) (4 . -1)) - e2 - } + \set Staff.keySignature = #`((2 . ,SEMI-FLAT) (6 . ,THREE-Q-SHARP) (4 . ,FLAT)) + e2 }