X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=sidebyside;f=input%2Fregression%2Fkeys.ly;h=209a3469f1f075e24cff45e16b2c590ea5e0d507;hb=12a06e5c29a2f58081068ac7663f0d6a6d4bdf95;hp=c92579627bad5f542c84b79449f794018579f41f;hpb=197f00037dc4c9e7bd17368f50d11dd8cde7a994;p=lilypond.git diff --git a/input/regression/keys.ly b/input/regression/keys.ly index c92579627b..209a3469f1 100644 --- a/input/regression/keys.ly +++ b/input/regression/keys.ly @@ -1,29 +1,31 @@ -\version "2.1.22" +\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'' - { - \set 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 - \set Staff.keySignature = #'((2 . -1) (6 . 3) (4 . -2)) - e2 - } + \set Staff.keyAlterations = #`((4 . ,FLAT) (6 . ,THREE-Q-SHARP) (2 . ,SEMI-FLAT)) + e2 }