]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-arpeggio.ly
99ff64c71427d551ec3b9770a4701493e1a2072a
[lilypond.git] / input / regression / tie-arpeggio.ly
1 \version "2.14.0"
2 #(ly:set-option 'warning-as-error #f)
3
4 \header
5 {
6
7   texidoc =
8   "when @code{tieWaitForNote} is set, the right-tied note does not
9  have to follow the lef-tied note directly. When @code{tieWaitForNote}
10  is set to false, any tie will erase all pending ties."
11   
12 }
13
14 \paper { ragged-right =  ##t }
15 \relative c' {
16   c~ e~ g~ <c, e g>
17   \set tieWaitForNote = ##t
18   c~ e~ g~ <c, e g>
19
20   <c c'> ~
21
22   \set tieWaitForNote = ##f
23   <c e> ~
24   <c e c'>
25
26 }