]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/repeat-unfold-all.ly
Run convert-ly on input/lsr and input/regression
[lilypond.git] / input / regression / repeat-unfold-all.ly
index 09c3b6d70de49d9d65f80e09fa0378b650c6323c..b938cc2e73af068441562403893678f083aad9a8 100644 (file)
@@ -1,19 +1,18 @@
-#(ly:set-option 'old-relative)
-\version "2.1.7"
+\version "2.11.51"
+
+\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} 
-     }