]> git.donarmstrong.com Git - lilypond.git/commitdiff
File not necessary; \unfoldRepeats is now a standard command.
authorGraham Percival <graham@percival-music.ca>
Fri, 9 Jun 2006 07:33:54 +0000 (07:33 +0000)
committerGraham Percival <graham@percival-music.ca>
Fri, 9 Jun 2006 07:33:54 +0000 (07:33 +0000)
input/test/unfold-all-repeats.ly [deleted file]

diff --git a/input/test/unfold-all-repeats.ly b/input/test/unfold-all-repeats.ly
deleted file mode 100644 (file)
index 8c0f1eb..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-\version "2.9.7"
-\sourcefilename "unfold-all-repeats.ly"
-
-\header { 
-texidoc = "Applying the standard function @code{unfold-repeats} unfolds 
-recursively all repeats for a correct MIDI output."
-}
-
-unfoldAll = 
-       #(define-music-function (parser location music )
-                        (ly:music?)
-       #{
-               \unfoldRepeats $music
-       #})
-
-mel = \context Staff {
-  \repeat tremolo 8 {c'32 e' }
-  \repeat percent 2 { c''8 d'' }
-  \repeat volta 2 {c'4 d' e' f'} 
-  \alternative {
-    { g' a' a' g' }
-    {f' e' d' c' }
-  }
-  \bar "|."
-}
-
-\score {  {
-  \mel \break
-  \unfoldAll \mel
- }
-}
-