]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/glissando-chord-linebreak.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / glissando-chord-linebreak.ly
1 \version "2.14.0"
2
3 \header {
4
5   texidoc = "
6 A glissando between chords should not interfere with line breaks.  In
7 this case, the music should be in two lines and there should be no
8 warning messages issued.  Also, the glissando should be printed.
9 "
10
11 }
12
13 theNotes = {
14   <c e>4 <c e> <c e>
15   \glissando
16   d
17 }
18
19 \score {
20   \new Staff {
21     \relative c'' {
22       \theNotes
23       \break
24       \theNotes
25     }
26   }
27 }