X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fchord-name-exceptions.ly;h=d0d9ac6d39c833b076737df30ddb3b6229b7c3f9;hb=79b728d4583177252f44644471e40766e6c4b676;hp=d6a7441c2d6a10e92eab479a9487fa6ef6221d5a;hpb=11613b92019bb42418863f43de92287a64878f14;p=lilypond.git diff --git a/input/regression/chord-name-exceptions.ly b/input/regression/chord-name-exceptions.ly index d6a7441c2d..d0d9ac6d39 100644 --- a/input/regression/chord-name-exceptions.ly +++ b/input/regression/chord-name-exceptions.ly @@ -1,10 +1,10 @@ -\version "1.9.2" +\version "2.3.4" \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,22 +23,22 @@ adds the new exceptions to the default ones, which are defined in % 7sus4 denoted with ^7 wahh -chExceptionMusic = \notes { - <>1-\markup { \super "7" "wahh" }} +chExceptionMusic = { + 1-\markup { \super "7" "wahh" }} % add to existing exceptions. chExceptions = #(append (sequential-music-to-chord-exceptions chExceptionMusic #t) ignatzekExceptions) -theMusic = \chords { - c:7sus4 c:dim7 - \property Current.chordNameExceptions = #chExceptions - c:7sus4 c:dim7 } +theMusic = \chords { + c:7sus4 c:dim7/+f + \set chordNameExceptions = #chExceptions + c:7sus4 c:dim7/+f } \score { - < \context ChordNames \theMusic + << \context ChordNames \theMusic \context Voice \theMusic - > + >> }