]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix measure-grouping.ly test
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 2 Jan 2007 02:22:42 +0000 (03:22 +0100)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Tue, 2 Jan 2007 02:22:42 +0000 (03:22 +0100)
Put \consists before score. This puts the grouping signs in the
output, and fixes coverage of Lookup::triangle.

Conflicts:

input/regression/measure-grouping.ly

input/regression/measure-grouping.ly

index d89f00603046edfcb99f81d3f1504befaad0cd52..1cf2c8d9bf94125fd15999ed835b630a8a270bcc 100644 (file)
@@ -9,10 +9,16 @@ brackets above beats when the beats of a time signature are grouped.  "
 
 \version "2.10.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) 
   c8 a'4 a8~
@@ -23,11 +29,3 @@ brackets above beats when the beats of a time signature are grouped.  "
   #(set-time-signature 5 8 '(3 2)) 
   g8 a4 g a4.->
 }
-\layout  {
-  ragged-right = ##t
-  \context { \Staff
-            \consists "Measure_grouping_engraver"
-          }
-}
-
-