Documentation/user/music-glossary.tely: changed copyright
date to 2005 instead of 2004.
+ * input/test/volta-chord-names.ly: added old example back.
+
2005-01-22 Han-Wen Nienhuys <hanwen@xs4all.nl>
* mf/feta-beugel.mf: use design size 20 (not 15).
--- /dev/null
+\header {
+ texidoc = "Volta brackets can be placed over chord names. This
+requires adding an engraver to @code{ChordNames}, and setting
+@code{voltaOnThisStaff} correctly."
+}
+
+\version "2.4.0"
+\score { <<
+ \new ChordNames \with {
+ voltaOnThisStaff = ##t
+ } \chordmode {
+ c1 c
+ }
+ \new Staff \with {
+ voltaOnThisStaff = ##f
+ }
+ {
+ \repeat volta 2 { c'1 } \alternative { c' }
+ }
+>> }