]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/measure-grouping.ly
Refresh patch
[lilypond.git] / input / regression / measure-grouping.ly
index e5e98ea02f301cd4e321285be6c0a94552c0fe5e..5fa0b8723bc702aa86089d0fd95764d50068927b 100644 (file)
@@ -7,27 +7,27 @@ brackets above beats when the beats of a time signature are grouped.  "
 
 }
 
-\version "2.7.39"
+\version "2.16.0"
 
+\layout  {
+  ragged-right = ##t
+}
 
 %% TODO: should have 2/4 + 5/8 time sig style.
 
-\context Staff
+\context Staff \with {
+    \consists "Measure_grouping_engraver"
+  }
+
 \relative c' {
-  #(set-time-signature 2 4) 
+  \time 2/4 
   c8 a'4 a8~
-  #(set-time-signature 5 8 '(3 2)) 
+  \time #'(3 2) 5/8 
   a8 bes4 r8 bes8->
   \time 2/4
   c,8 g'4 g8~
-  #(set-time-signature 5 8 '(3 2)) 
+  \time #'(3 2) 5/8 
   g8 a4 g a4.->
 }
-\layout  {
-  ragged-right = ##t
-  \context { \Staff
-            \consists "Measure_grouping_engraver"
-          }
-}