]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/completion-heads.ly
Doc-es: various updates.
[lilypond.git] / input / regression / completion-heads.ly
index 030fcaa472852cdcb866e1bf40ef5e448944effa..ac7753e2443960077d61d53030aff8515e8f0107 100644 (file)
@@ -1,24 +1,21 @@
-\version "1.7.18"
+\version "2.16.0"
 
 \header{
 texidoc="
 
-If the Note_heads_engraver is replaced by the 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.
+
 "
 }
 
-\score{
-  \notes\relative c'{
+\layout { ragged-right= ##t }
+
+
+\new Voice \with {
+    \remove "Note_heads_engraver"
+    \consists "Completion_heads_engraver"
+} \relative c'{
   \time 2/4
 
-  c2. c8 d4 e f g a b c8 c2 b4 a g16 f4 e d c8. c2 
-  }
-  \paper{
-    \translator{
-      \ThreadContext
-      \remove "Note_heads_engraver"
-      \consists "Completion_heads_engraver"
-    }
-  }
-}
\ No newline at end of file
+  c2. c8 d4 e f g a b c2.. b8 a g16 f4 e d c8. c2 
+}