]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/system-separator.ly
Docs: run convert-ly for 2.14.0.
[lilypond.git] / input / regression / system-separator.ly
index 1c754ad3a666e84e81e762cf95115885fe1875cc..4082b80a582d2fa9ef33d6cbab1a2796814fa47a 100644 (file)
@@ -1,24 +1,25 @@
-\version "2.7.39"
+\version "2.14.0"
 
 \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. "
-
+  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 
+    >>
   }
 }