]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/lyrics-melisma-beam.ly
*** empty log message ***
[lilypond.git] / input / regression / lyrics-melisma-beam.ly
index f861c4de06dab6a1ad848a6964ddff481ce70baf..cb304d9818f3f9e1112af4d421818813037adf6b 100644 (file)
@@ -1,20 +1,18 @@
-
-\version "1.7.17"
+\version "2.2.0"
 \header
 {
-    texidoc = "melismata are triggered by manual beams." 
+    texidoc = "Melismata are triggered by manual beams." 
 }
 
 
 \score {
-        \simultaneous {
-          \addlyrics
-             \context Staff = mel
-             \notes \relative c'' {
-                \property Staff.autoBeaming = ##f
-                c8 c8-[ c8 c8-]  c8    }
-               
-             \context Lyrics \lyrics { bla bla bla }
-        }
-        \paper { raggedright = ##t }
+    <<
+       \new Staff
+           \notes \relative c'' {
+               \set Staff.autoBeaming = ##f
+               c8 c8[ c8 c8]  c8    }
+       
+       \lyricsto "" \new Lyrics \lyrics { bla bla bla }
+    >>
+    \paper { raggedright = ##t }
 }