]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando-chord-linebreak.ly
d33e464e7199d421df76bafad9c11face683c96c
[lilypond.git] / input / regression / glissando-chord-linebreak.ly
1 \version "2.13.61"
2 %% This should really be 2.15.0, because the glissando code
3 %% hasn't been backported -- this is a git-only test at this point
4
5 \header {
6
7   texidoc = "
8 A glissando between chords should not interfere with line breaks.  In
9 this case, the music should be in two lines and there should be no
10 warning messages issued.  Also, the glissando should be printed.
11 "
12
13 }
14
15 theNotes = {
16   <c e>4 <c e> <c e>
17   \glissando
18   d
19 }
20
21 \score {
22   \new Staff {
23     \relative c'' {
24       \theNotes
25       \break
26       \theNotes
27     }
28   }
29 }