X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fquote-during-subvoice.ly;h=ae8c0680abeca1f99e6311d1c14a4bf7efcdd1e2;hb=89d3c06c35d8a9afc4ae023a22100230b21e7ffa;hp=6b39f07a27fd39bc5e0fde3e14f29eab5bca2e3c;hpb=84e144718964f20c48ff8dccaea8de9741df07e4;p=lilypond.git diff --git a/input/regression/quote-during-subvoice.ly b/input/regression/quote-during-subvoice.ly index 6b39f07a27..ae8c0680ab 100644 --- a/input/regression/quote-during-subvoice.ly +++ b/input/regression/quote-during-subvoice.ly @@ -1,4 +1,4 @@ -\version "2.15.9" +\version "2.19.21" \header { texidoc = "@code{\\quoteDuring} and @code{\\cueDuring} shall properly quote @@ -9,8 +9,8 @@ which will be quoted. } % Simple case, normal sub-voice -quoteMe = \relative c' { - c4 c +quoteMe = \relative { + c'4 c \new Voice { c4 c } @@ -20,22 +20,22 @@ quoteMe = \relative c' { \addQuote "quoteMeA" \new Voice \quoteMe % Also works with voice directly inside relative -quoteMeI = \relative c' \new Voice { - c4 c4 +quoteMeI = \relative \new Voice { + c'4 c4 } \addQuote "quoteMeI" \quoteMeI % Quoting music with some parallel sections (identical rhythm) -quoteMeII = \relative c' { - c4 c +quoteMeII = \relative { + c'4 c << { d4 e4 } \\ { c4 b4 } >> c4 } \addQuote "quoteMeII" \quoteMeII % Quoting music with some parallel sections (different rhythm) -quoteMeIII = \relative c' { - c4 c +quoteMeIII = \relative { + c'4 c << { d4 e4 } \\ { c4. b8 } >> c4 } @@ -45,24 +45,24 @@ quoteMeIII = \relative c' { << - \new Staff \relative c'' { - c4 \cueDuring #"quoteMe" #DOWN { r4 } + \new Staff \relative { + c''4 \cueDuring #"quoteMe" #DOWN { r4 } c4 \cueDuring #"quoteMe" #DOWN { r4 } % <- no cue note due to sub-voice } - \new Staff \relative c'' { - c4 \cueDuring #"quoteMeA" #DOWN { r4 } + \new Staff \relative { + c''4 \cueDuring #"quoteMeA" #DOWN { r4 } c4 \cueDuring #"quoteMeA" #DOWN { r4 } % <- no cue note due to sub-voice } - \new Staff \relative c'' { - c4 \cueDuring #"quoteMeI" #DOWN { r4 } + \new Staff \relative { + c''4 \cueDuring #"quoteMeI" #DOWN { r4 } c4 } - \new Staff \relative c'' { - c4 \cueDuring #"quoteMeII" #DOWN { r4 } + \new Staff \relative { + c''4 \cueDuring #"quoteMeII" #DOWN { r4 } c4 \cueDuring #"quoteMeII" #DOWN { r4 } % <- quoted parallel notes } - \new Staff \relative c'' { - c4 \cueDuring #"quoteMeIII" #DOWN { r4 } + \new Staff \relative { + c''4 \cueDuring #"quoteMeIII" #DOWN { r4 } c4 \cueDuring #"quoteMeIII" #DOWN { r4 } % <- quoted parallel notes } >>