]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/key-signature-scordatura.ly
Merge with git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond.git
[lilypond.git] / input / regression / key-signature-scordatura.ly
index 6aa94c64c2bd496a79743f3fc0e6c937b6ca2029..456bc1a6290344f6873ae5b0bfd1e03e3732fd49 100644 (file)
@@ -1,18 +1,19 @@
 
-\version "2.3.16"
+\version "2.10.0"
 
 \header { texidoc = "By setting @code{Staff.keySignature} directly,
 key signatures can be set invidually per pitch.
 "
 
+      }
+\layout {
+    ragged-right = ##T
 }
-\score { 
 \relative c'
-\context Staff {
-  \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
-  f8 a c e
-  \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
-  e a, g a
-}
+\new Staff {
+    \set Staff.keySignature = #'(((1 .  2) . 1) ((0 . 3) . -1))
+    f8 a c e
+    \set Staff.keySignature = #'(((1 .  2) . -1) ((0 . 4) . 2))
+    e a, g a
 }