From: Graham Percival Date: Fri, 9 Jun 2006 07:33:54 +0000 (+0000) Subject: File not necessary; \unfoldRepeats is now a standard command. X-Git-Tag: release/2.10.0-2~537 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c0b93de8d302a427e28639865633ad5402897fc8;p=lilypond.git File not necessary; \unfoldRepeats is now a standard command. --- diff --git a/input/test/unfold-all-repeats.ly b/input/test/unfold-all-repeats.ly deleted file mode 100644 index 8c0f1ebbed..0000000000 --- a/input/test/unfold-all-repeats.ly +++ /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 - } -} -