]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/cluster-cross-staff.ly
bump .ly \version to 2.10.0
[lilypond.git] / input / regression / cluster-cross-staff.ly
index ba52e278ae4e1de2b1daee51a5c547bf46b5a64b..ddcc72ff23b9eed20146de99f342ab8d94945313 100644 (file)
@@ -3,22 +3,20 @@
     texidoc = "Clusters can be written across staves."
 
 }
+\layout {
+  ragged-right= ##t
+}
 
-\version "2.3.1"
+\version "2.10.0"
 
-\score {
-\notes    \new PianoStaff <<
-    \context Staff = up     {
-       s1 *2
-       }
-       \context Staff = down <<
-           \applymusic #notes-to-clusters \relative c  { <c e>4 <f a> <b e> \change Staff = up <e a>
-                                                    <a d> <d g> }
+\new PianoStaff <<
+  \new Staff = "up"     {
+    s1 *2
+  }
+  \new Staff = "down" <<
+    \applyMusic #notes-to-clusters \relative c  { <c e>4 <f a> <b e> \change Staff = up <e a>
+                                                 <a d> <d g> }
 
-           { \clef bass s1 * 2 }
-           >>
+    { \clef bass s1 * 2 }
+  >>
 >>
-    \paper {
-       raggedright= ##t
-    }
-}