]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/chord-name-exceptions.ly
* ly/a4-init.ly (vsize): remove papersize init files.
[lilypond.git] / input / regression / chord-name-exceptions.ly
index be972400e68175eb8c4ad7c65c0703f0941cedcf..1b889c357ac4d96e6ca1b8f68ce3b518d493079d 100644 (file)
@@ -1,10 +1,10 @@
-\version "2.1.26"
+\version "2.3.16"
 \header { texidoc = "The property @code{chordNameExceptions} can used
     to store a list of special notations for specific chords.
 
 Putting the exceptions list encoded as
 @example
-       \\notes @{ <c f g bes>1\\markup @{ \\super \"7\" \"wahh\" @} @}
+       \ @{ <c f g bes>1\\markup @{ \\super \"7\" \"wahh\" @} @}
 @end example
 into @code{chordNameExceptions} takes a little manoeuvring. The
 following code transforms @code{chExceptionMusic} (which is a
@@ -23,7 +23,7 @@ adds the new exceptions to the default ones, which are defined in
 
 
 % 7sus4 denoted with ^7 wahh
-chExceptionMusic = \notes {
+chExceptionMusic =  {
   <c f g bes>1-\markup { \super "7" "wahh" }}
 
 % add to existing exceptions.
@@ -31,7 +31,7 @@ chExceptions = #(append
   (sequential-music-to-chord-exceptions chExceptionMusic #t)
   ignatzekExceptions)
 
-theMusic = \chords {
+theMusic = \chordmode {
       c:7sus4 c:dim7/+f
       \set chordNameExceptions = #chExceptions
       c:7sus4 c:dim7/+f }