]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/quote-kill-cues.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / quote-kill-cues.ly
1 \version "2.16.0"
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' { c2 c c c c c c c }
9 \addQuote #"M" \mus
10
11 quot = \relative c' { 
12   d2 \quoteDuring #"M" { s1 } e2 \cueDuring #"M" #UP { s1 } f2
13 }
14
15 \score { <<
16   \quot
17   \killCues \quot
18 >> }