]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/lyric-extender-broken.ly
Run scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / input / regression / lyric-extender-broken.ly
index f4d769db57eef5f20000e1f1305f89472b01a4fb..7d36a12335cefac28757a96d7961c2d8caf4ff8c 100644 (file)
@@ -1,27 +1,23 @@
-\version "2.1.7"
-\header{
-    texidoc =
+\version "2.16.0"
+\header
+{
 
-    "Extenders that end a staff should not extend past the staff."
+  texidoc = "Lyric extenders run to the end of the line if it
+continues the next line. Otherwise, it should run to the last note
+of the melisma."
 
 }
 
-sopran = \notes \relative c'' {
-\time 3/4 a2.( | \break
- g2) g4
+\layout {
+  ragged-right = ##t
 }
 
-text = \lyrics {
-Aaaaa __ aaaaaah
-}
-
-\score {
-<<
-    
-  \context Voice = "foo" \sopran
-  \context LyricsVoice \newaddlyrics foo \text
+<< 
+  \new Voice =A  {
+    a1 ( a1 \break
+    a) a2( b) \break
+    a2 
+  }
+  \lyricsto A \context Lyrics \lyricmode { a __ a __ ha }
 >>
-\paper { linewidth = 5.0\cm
-}
-}