]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/repeat-unfold-all.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / repeat-unfold-all.ly
index aef95eeb7a51cf59d1444015ef873168025fb998..eae3684bf977428fadac9fa8f241c151c0b665c6 100644 (file)
@@ -1,19 +1,18 @@
-#(ly:set-option 'old-relative)
-\version "1.9.0"
+\version "2.14.0"
+
+\header { texidoc = "Volta repeats may be unfolded through the music
+    function @code{\\unfoldRepeats}."
 
-\header {
-    texidoc = "Repeats may be unfolded through the Scheme function @code{unfold-repeats}."
 }
 
-nots = \notes\relative c'   {
+nots = \relative c'   {
     c4 \repeat volta 2 c4 \alternative { d e  }
-    \repeat tremolo 4 { c16 d }
 }
+\layout {ragged-right = ##t} 
 
-\score { \notes \context Voice {
-\nots
-\apply #unfold-repeats \nots
+\context Voice {
+    \nots
+    \bar "||"
+    \unfoldRepeats \nots
 }
-\paper {raggedright = ##t} 
-     }