]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/keys.ly
Merge branch 'master' of git://git.sv.gnu.org/lilypond
[lilypond.git] / input / regression / keys.ly
index 366a22903ae477fb991322075dd18f0983fade2b..0a071d9bd6e55d7b7ab99f28bb5479de14747749 100644 (file)
@@ -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
 }