From: gpercival <gpercival>
Date: Thu, 23 Dec 2004 06:41:32 +0000 (+0000)
Subject: Fixed misc broken links.
X-Git-Tag: release/2.5.23~774
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=bf8fe5984abc688053cfe49afb4efc7f147af79a;p=lilypond.git

Fixed misc broken links.
---

diff --git a/ChangeLog b/ChangeLog
index 49c14c236e..f28b1b931f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,9 @@
 
 	* input/test/unfold-all-repeats.ly: added file back.
 
-	* Documentation/user/notation.itely: fixed misc broken
+	* Documentation/user/notation.itely,
+	Documentation/user/programming-interface.itely
+	Documentation/user/changing-defaults.itely: fixed misc broken
 	links to input/test/ files.
 
 2004-12-22  Jan Nieuwenhuizen  <janneke@gnu.org>
diff --git a/Documentation/user/changing-defaults.itely b/Documentation/user/changing-defaults.itely
index 2112b29dbf..29ac67b232 100644
--- a/Documentation/user/changing-defaults.itely
+++ b/Documentation/user/changing-defaults.itely
@@ -1936,10 +1936,6 @@ how much space can be spent on a page, the latter creates the actual
 page given the system to put on it.
 
 
-@seealso
-
-Examples: @inputfileref{input/@/test,page@/-breaks@/.ly}
-
 @refbugs
 
 The option rightmargin is defined but doesn't set the right margin
diff --git a/Documentation/user/programming-interface.itely b/Documentation/user/programming-interface.itely
index 2e9c0e1591..3446c21b28 100644
--- a/Documentation/user/programming-interface.itely
+++ b/Documentation/user/programming-interface.itely
@@ -298,7 +298,7 @@ Other applications of @code{\applymusic} are writing out repeats
 automatically (@inputfileref{input/@/test,unfold@/-all@/-repeats@/.ly}),
 saving keystrokes (@inputfileref{input/@/test,music@/-box@/.ly}) and
 exporting LilyPond input to other formats
-(@inputfileref{input/@/test,to@/-xml@/.ly})
+(@inputfileref{input/@/no@/-notation,to@/-xml@/.ly}).
 
 @cindex internal storage
 @cindex @code{\displayMusic}
diff --git a/input/test/unfold-all-repeats.ly b/input/test/unfold-all-repeats.ly
new file mode 100644
index 0000000000..32c1226224
--- /dev/null
+++ b/input/test/unfold-all-repeats.ly
@@ -0,0 +1,27 @@
+\version "2.4.0"
+
+\header { 
+texidoc = "Applying the standard function @code{unfold-repeats} unfolds 
+recursively all repeats for a correct MIDI output."
+}
+
+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
+  \applymusic #unfold-repeats \mel 
+ }
+}
+
+
+
+