]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-kill-cues.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / quote-kill-cues.ly
1 \version "2.19.21"
2
3 \header {
4   texidoc = "@code{\\killCues} shall only remove real cue notes generated by
5   @code{\\cueDuring}, but not other music quoted using @code{\\quoteDuring}."
6 }
7
8 mus = \relative { c'2 c c c c c c c }
9 \addQuote #"M" \mus
10
11 quot = \relative { 
12   d'2 \quoteDuring #"M" { s1 } e2 \cueDuring #"M" #UP { s1 } f2
13 }
14
15 \score { <<
16   \quot
17   \killCues \quot
18 >> }