X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fquote-during.ly;h=f28219d99ade8dcf07b519f907c1a6fc668ee881;hb=f98302fde436a0d689f26a0603e3763d2359c3f3;hp=0112ad7786ada14c32fad7049a02b09de8ffe575;hpb=d02446a61d3eabfde67ed48928ae07766c97750f;p=lilypond.git diff --git a/input/regression/quote-during.ly b/input/regression/quote-during.ly index 0112ad7786..f28219d99a 100644 --- a/input/regression/quote-during.ly +++ b/input/regression/quote-during.ly @@ -4,11 +4,11 @@ texidoc = "With @code{\\cueDuring} and @code{\\quoteDuring}, fragments of previously entered music may be quoted. @code{quotedEventTypes} will determines what things are -quoted. In this example, a 16th rests is not quoted, since +quoted. In this example, a 16th rest is not quoted, since @code{rest-event} is not in @code{quotedEventTypes}." } -\version "2.7.32" +\version "2.11.51" \layout { ragged-right = ##t } @@ -16,21 +16,21 @@ quoted. In this example, a 16th rests is not quoted, since quoteMe = \relative c' { fis4 r16 a8.-> b4-\ff c } -\addquote quoteMe \quoteMe +\addQuote quoteMe \quoteMe original = \relative c'' { c8 d s2 es8 gis8 } << \new Staff { - \set Staff.instrument = "quoteMe" + \set Staff.instrumentName = "quoteMe" \quoteMe } \new Staff { - \set Staff.instrument = "orig" + \set Staff.instrumentName = "orig" \original } \new Staff \relative c'' << - \set Staff.instrument = "orig+quote" + \set Staff.instrumentName = "orig+quote" \set Staff.quotedEventTypes = #'(note-event articulation-event) \original { s4 \quoteDuring #"quoteMe" { s2. } }