X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fquote-overrides.ly;h=be3dc3caf660292bcf1d157964def9ebe5eb14d2;hb=46e296f5381495ce30108aa981e549d61e55a009;hp=07ff7229a8fecd4e0800f2e7f1c1deaeecedf3b0;hpb=aa8523e4fa16352a1708065e447aac65426d82a4;p=lilypond.git diff --git a/input/regression/quote-overrides.ly b/input/regression/quote-overrides.ly index 07ff7229a8..be3dc3caf6 100644 --- a/input/regression/quote-overrides.ly +++ b/input/regression/quote-overrides.ly @@ -1,4 +1,4 @@ -\version "2.13.5" +\version "2.14.0" \header { texidoc = "The @code{\\quoteDuring} command shall also quote correctly all @@ -12,7 +12,7 @@ } mus = \relative c' { - % Acciaccaturas contain a slur and \override Stem #'stroke-style + % Acciaccaturas contain a slur and \override Flag #'stroke-style % Thus, we're checking \override here c4 \acciaccatura d8 c4 % Checking \set and \unset @@ -23,20 +23,27 @@ mus = \relative c' { % Checking \once \override \once \override Stem #'thickness = #8.0 d8 % Checking two overrides - \override Stem #'thickness = #8.0 \override Stem #'stroke-style = "grace" + \override Stem #'thickness = #8.0 \override Flag #'stroke-style = "grace" d8 % reverting one of them \revert Stem #'thickness d8 % and the other - \revert Stem #'stroke-style c8 + \revert Flag #'stroke-style c8 % checking tweaks c2-\tweak #'color #red -> } \addQuote "music" \mus -\new Score \with { quotedEventTypes = #'(StreamEvent) } +\layout { + \context { + \Score + quotedEventTypes = #'(StreamEvent) + } +} + +\score { << \new Staff \mus \new Voice { \quoteDuring #"music" s1*2 } ->> } \ No newline at end of file +>> }