]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/grace-volta-repeat-2.ly
New bar line interface
[lilypond.git] / input / regression / grace-volta-repeat-2.ly
index 4875290c1de4e01fc3492bdaef15965fdfc8d054..1a150fcc8aba9ebb6264c12f086fd5cf7efe7b70 100644 (file)
@@ -1,21 +1,19 @@
-#(ly:set-option 'old-relative)
-\version "1.9.0"
+\version "2.17.5"
 
 \header {
 
-    texidoc = "Graces at combined with volta repeats: a repeat
-starting with a grace, following a repeat directly. The bars should be
-merged into one :||:."
+  texidoc = "A volta repeat may begin with a grace. Consecutive
+    ending and starting repeat bars are merged into one @code{:..:}."
 
-      }
+}
 
-    \paper { raggedright= ##t }
+\layout { ragged-right= ##t }
 
-\score {\notes\relative c' {
-\repeat volta 2 {
-        c1 
-}
-\repeat volta 2 {
-        \grace {c8 } c4
+\relative c' {
+  \repeat volta 2 {
+    c1
+  }
+  \repeat volta 2 {
+    \grace {c8 } c4
+  }
 }
-}}