]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/maximum-rest-count.ly
*** empty log message ***
[lilypond.git] / input / test / maximum-rest-count.ly
index e5340ba10e8a899c68a7be03782b0b7002c6e1d5..20efbdca6e0f00d92aadf414815fceb0e3f5a06e 100644 (file)
@@ -1,5 +1,4 @@
-#(ly:set-option 'old-relative)
-\version "1.9.1"
+\version "2.1.7"
 % possible rename to rest-foo
 \header {
     texidoc = "@cindex Rest Collision Count
@@ -7,8 +6,8 @@ Control the number of rests in a collision with maximum-rest-count."
 }
 
 \score{
-\context Staff \notes\relative c''<
-       \context Voice = x {
+\context Staff \notes\relative c''<<
+       \new Voice {
                a4 
                r 
                \property Staff. RestCollision \set #'maximum-rest-count = #1
@@ -20,7 +19,7 @@ Control the number of rests in a collision with maximum-rest-count."
                r8 r8
                c
        }
-       \context Voice = y {
+       \new Voice {
                c4
                r
                r 
@@ -29,7 +28,7 @@ Control the number of rests in a collision with maximum-rest-count."
                r
                r
        }
-       \context Voice = z {
+       \new Voice {
                e4
                r
                r 
@@ -38,7 +37,7 @@ Control the number of rests in a collision with maximum-rest-count."
                r
                r
        }
-       >
+       >>
        \paper{ raggedright = ##t }
 }