]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/lyric-extender-broken.ly
Merge remote-tracking branch 'origin/translation'
[lilypond.git] / input / regression / lyric-extender-broken.ly
index 392d5945fe254937b61cde6142805814fd0891b2..0919bfcbbf8cfdde5c94e1522add16e611c0d58b 100644 (file)
@@ -1,27 +1,23 @@
-\version "2.1.10"
-\header{
-    texidoc =
+\version "2.19.2"
+\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 \lyricsto foo \text
+<< 
+  \new Voice =A  {
+    a1 ( a1 \break
+    a) a2( b) \break
+    a2 
+  }
+  \context Lyrics \lyricsto A { a __ a __ ha }
 >>
-\paper { linewidth = 5.0\cm
-}
-}