]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/system-extents.ly
release commit
[lilypond.git] / input / regression / system-extents.ly
index 86ef3e34c52a1139383a07277a8aad27088186cb..d58aa4bcd09a298ab751943365531b10c3276107 100644 (file)
@@ -1,23 +1,24 @@
-\version "2.1.7"
+\version "2.8.0"
 \header {
 
-    texidoc = "LilyPond correctly determines the size of every
-    system. This includes postscript constructs such as slurs."
+    texidoc = "The size of every system is correctly determined; this 
+    includes postscript constructs such as slurs."
 
     }
          
-\score { \notes
-\context Voice
-{ \property Staff.minimumVerticalExtent \unset
-    \slurDown c4 ( g4  c''4)
 
+\layout { 
+    \context {
+       \Score
+       \override System  #'stencil = #box-grob-stencil
+    }
 }
 
-    \paper { 
-        \translator {
-            \ScoreContext
-            System \override #'molecule-callback = #box-grob-molecule
-            }
-    }
+\new Voice
+{
+    \unset Staff.minimumVerticalExtent
+    \override Score.RehearsalMark #'font-size = #20
+    
+    \slurDown c4 ( g4  c''4)
 }