]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/volta-chord-names.ly
bump .ly \version to 2.10.0
[lilypond.git] / input / test / volta-chord-names.ly
index 07ac7a626ebc603c96e47efbaae06debb1837598..8f6ebd70755ca946d82850551e6b950cebd34572 100644 (file)
@@ -1,21 +1,19 @@
 \header {
-
-    texidoc = "Volta brackets can be placed over chord names. This
-requires adding an engraver to @code{ChordNames}, and setting
-@code{voltaOnThisStaff} correctly."
-
+    texidoc = "Volta brackets can be placed over chord names. Just set
+the @code{voltaOnThisStaff} property to true for the @code{ChordNames} context and to false for the topmost ordinary @code{Staff} context."
 }
 
-\version "2.2.3"
-<<
+\version "2.10.0"
+\score { <<
   \new ChordNames \with {
-      voltaOnThisStaff = ##t
-  } \chords {
-     c1 c
+    voltaOnThisStaff = ##t
+  } \chordmode {
+    c1 c
   }
   \new Staff \with {
-      voltaOnThisStaff = ##f
-  } {
-   \repeat volta 2 { c'1 } \alternative { c' }
+    voltaOnThisStaff = ##f
+  }
+  {
+    \repeat volta 2 { c'1 } \alternative { c' }
   }
->>
+>> }