]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/polymetric-differing-notes.ly
* input/: Convert ly files that still had \property. Fixes make
[lilypond.git] / input / test / polymetric-differing-notes.ly
index 0dc41423410aeb4a58b91d3c3c0e30cad1656f07..aaebb712e02a0d8b1cfeff59bcdd4fe4b1f05222 100644 (file)
@@ -1,5 +1,4 @@
-#(ly:set-option 'old-relative)
-\version "1.9.0"
+\version "2.1.22"
 
 \header{ texidoc="
 
@@ -46,26 +45,26 @@ what happens on the inside: a 3/4 time signature is combined with a
 
 
 \score {
-    \notes \relative c'  <
-       \context Staff= AS {
+    \notes \relative c'  <<
+       \new Staff {
            \time 3/4
            c4 c c | c c c |
        }
-       \context Staff= BS {
+       \new Staff {
            \time 3/4
-           \property Staff.timeSignatureFraction= #'(9 . 8)
+           \set Staff.timeSignatureFraction = #'(9 . 8)
            \apply #display-music \apply #(scale-music-function '(2 . 3))
-             \repeat unfold 6 { c8-[ c c-] }
+             \repeat unfold 6 { c8[ c c] }
        }
        
-       \context Staff= DS {
+       \new Staff {
            \time 3/4
-           \property Staff.timeSignatureFraction= #'(10 . 8)
+           \set Staff.timeSignatureFraction = #'(10 . 8)
            \apply #display-music \apply #(scale-music-function '(3 . 5))
-             { \repeat unfold 2 { c8-[ c c-] }
-               \repeat unfold 2 { c8-[  c-] }
+             { \repeat unfold 2 { c8[ c c] }
+               \repeat unfold 2 { c8[  c] }
                |  c4. c4. \times 2/3 { c8 c c } c4  }
        }
-       >
+       >>
        \paper { raggedright = ##t }
 }