]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/ambitus-with-ligature.ly
Issue 5064 Let analysis brackets support text
[lilypond.git] / input / regression / ambitus-with-ligature.ly
index 6f1ede4f73df4b24692efaaf8ed9978776604f73..fa22244c6d9ab499ac54f030e488fdf0157f25c6 100644 (file)
@@ -1,23 +1,17 @@
-\version "2.14"
+\version "2.16.0"
 
 \header {
   texidoc = "
-A @code{\Voice} should be able to contain both an @code{Ambitus_engraver}
+A @code{\\Voice} should be able to contain both an @code{Ambitus_engraver}
 and a @code{Mensural_ligature_engraver} without segfaulting.
   "
 }
 
-\score{
-  {
-    \context Staff="default" {
-      \[ c'\longa c''\longa \]
-    }
-  }
-  \layout {
-    \context{
-      \Voice
-      \consists Ambitus_engraver
-      \consists Mensural_ligature_engraver
-    }
-  }
+\new Voice \with  {
+  \consists "Ambitus_engraver"
+  \consists "Mensural_ligature_engraver"
+  \remove "Ligature_bracket_engraver"
+} {
+  \cadenzaOn
+  \[ c'\longa c''\longa \]
 }