]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tie-arpeggio.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / tie-arpeggio.ly
1 \header
2 {
3
4   texidoc =
5
6   "when @code{tieWaitForNote} is set, the right-tied note does not
7  have to follow the lef-tied note directly. When @code{tieWaitForNote}
8  is set to false, any tie will erase all pending ties."
9   
10 }
11
12 \version "2.11.51"
13
14 \paper { ragged-right =  ##t }
15 \relative {
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
27 }