X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fchord-name-exceptions.ly;h=1b889c357ac4d96e6ca1b8f68ce3b518d493079d;hb=5956be580d291c1460f1c4b5f6e4a1c3e6549602;hp=40466227e54c2f6becf53dc8891120cdd6643cec;hpb=a092cdafdcd520e03795f2086f324aaa73c52247;p=lilypond.git diff --git a/input/regression/chord-name-exceptions.ly b/input/regression/chord-name-exceptions.ly index 40466227e5..1b889c357a 100644 --- a/input/regression/chord-name-exceptions.ly +++ b/input/regression/chord-name-exceptions.ly @@ -1,10 +1,10 @@ -\version "2.1.22" +\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 @{ 1\\markup @{ \\super \"7\" \"wahh\" @} @} + \ @{ 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 = { 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 }