]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/glissando-chord-linebreak.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / glissando-chord-linebreak.ly
diff --git a/input/regression/glissando-chord-linebreak.ly b/input/regression/glissando-chord-linebreak.ly
new file mode 100644 (file)
index 0000000..957bf9d
--- /dev/null
@@ -0,0 +1,27 @@
+\version "2.14.0"
+
+\header {
+
+  texidoc = "
+A glissando between chords should not interfere with line breaks.  In
+this case, the music should be in two lines and there should be no
+warning messages issued.  Also, the glissando should be printed.
+"
+
+}
+
+theNotes = {
+  <c e>4 <c e> <c e>
+  \glissando
+  d
+}
+
+\score {
+  \new Staff {
+    \relative c'' {
+      \theNotes
+      \break
+      \theNotes
+    }
+  }
+}