MIDI: fix regtest failure
[lilypond/patrick.git] / input / regression / quote-tie.ly
blob8c15da75c8039389ba7a6b0bee06e3e7b7b658e1
1 \version "2.12.0"
3 \header {
4 texidoc = "Voices from different cues must not be tied together. In
5 this example, the first note has a tie. This note should not be tied
6 to the second visible note (following the rest).
7 Note that this behavior will not hold for cues in direct succession,
8 since only one @code{CueVoice} context is created
9 (with @code{context-id} `cue').
13 cueI = \relative c'' {
14 a1 ~ | a | a |
16 \addQuote "cueI" { \cueI }
18 cueII = \relative c' {
19 R1 | e | a |
21 \addQuote "cueII" { \cueII }
23 \new Staff \new Voice {
24 \cueDuring "cueI" #UP { R1 } |
26 \cueDuring "cueII" #UP { R1 } |