]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/lyric-extender-broken.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / regression / lyric-extender-broken.ly
index f4d769db57eef5f20000e1f1305f89472b01a4fb..f35111b316e8daf77b1de36df72af7b27fddd07c 100644 (file)
@@ -1,27 +1,23 @@
-\version "2.1.7"
-\header{
-    texidoc =
+\version "2.12.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
-}
-}