]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/repeat-unfold-all.ly
Make the length of beamlets configurable.
[lilypond.git] / input / regression / repeat-unfold-all.ly
index afaaff46dff736282bc558bccf00fa76b0e60e40..b938cc2e73af068441562403893678f083aad9a8 100644 (file)
@@ -1,19 +1,18 @@
-#(ly:set-option 'old-relative)
-\version "1.9.2"
+\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} 
-     }