]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/completion-heads.ly
Imported Upstream version 2.16.0
[lilypond.git] / input / regression / completion-heads.ly
index 7e129b01818564e7c70f137a69915730e50a06b4..ac7753e2443960077d61d53030aff8515e8f0107 100644 (file)
@@ -1,30 +1,21 @@
-\version "2.1.7"
+\version "2.16.0"
 
 \header{
 texidoc="
 
-If the Note_heads_engraver is replaced by the
-@code{Completion_heads_engraver}, notes that cross bar lines are split
-into tied notes.
+If the @code{Note_heads_engraver} is replaced by the @code{Completion_heads_engraver}, notes that cross bar lines are split into tied notes.
 
 "
 }
 
-\paper { raggedright= ##t }
+\layout { ragged-right= ##t }
 
 
-
-\score{
-  \notes\relative c'{
+\new Voice \with {
+    \remove "Note_heads_engraver"
+    \consists "Completion_heads_engraver"
+} \relative c'{
   \time 2/4
 
   c2. c8 d4 e f g a b c2.. b8 a g16 f4 e d c8. c2 
-  }
-  \paper{
-    \translator{
-      \ThreadContext
-      \remove "Note_heads_engraver"
-      \consists "Completion_heads_engraver"
-    }
-  }
 }