]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/grace-part-combine.ly
small fixes.
[lilypond.git] / input / regression / grace-part-combine.ly
index e6bd449b7b86c8ce59113e8a0fdff9aeec985cbd..413633ea79243acf7af66e4cdde4f46404bf3c84 100644 (file)
@@ -1,21 +1,21 @@
-#(ly:set-option 'old-relative)
-\version "1.9.1"
+
+\version "2.2.0"
 \header {
-    texidoc = "Partcombiner and grace notes can go together."
+    texidoc = "Grace notes may be put in a @code{partcombine}r."
 }
-    \paper { raggedright= ##t }
+
+\paper { raggedright= ##t }
 
 \score {
-    \context StaffGroup = group <
-       \context Staff = instrument <
-           \context Voice=one \partcombine Voice
-           \context Thread=one \notes \relative c'' {
+    \new Staff
+           \partcombine 
+            \notes \relative c'' {
                c4 d e f  \grace f16 g1
            }
-           \context Thread=two \notes \relative c' {
+            \notes \relative c' {
                c4 d e2  g1
            }
-       >
-    >
+       
+    
 }