]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/system-separator.ly
Merge commit 'origin' into beamlets2
[lilypond.git] / input / regression / system-separator.ly
index e48f316d36a9a9bf1af0934b4cadffb146f425d3..840a650ef43d4ea62a200d047f412c737b8b63e7 100644 (file)
@@ -1,22 +1,25 @@
-\header {
-
-  texidoc = "System separators maybe defined as markups in the
-@code{systemSeparator} field of the bookpaper block. They are centered
-between the boundary staffs of each system. "
+\version "2.12.0"
 
+\header {
+  texidoc = "System separators may be defined as markups in the
+@code{system-separator-markup} field of the paper block.  They are
+centered between the boundary staves of each system."
 }
 
 \paper {
-  systemSeparatorMarkup = \slashSeparator
+  system-separator-markup = \slashSeparator
+}
 
+foobar = \relative c' {
+  c1 c \break
+  c1 c \break
+  c1 c
 }
-foobar = \relative { c1 c \break c c  \break c c }
-\book
-{
+\book {
   \score {
-     \new GrandStaff <<
-       \new Staff \foobar 
-       \new Staff \foobar 
-     >>
+    \new GrandStaff <<
+      \new Staff \foobar 
+      \new Staff \foobar 
+    >>
   }
 }