]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-indicators-to-staves-which-get-split-after-a-break.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adding-indicators-to-staves-which-get-split-after-a-break.ly
index 528b3f3853911c3c053c4335f34319a68c29de74..80df7dc6d0539e8beb736e61b6737f1663db7fc4 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.17.6"
 
 \header {
   lsrtags = "staff-notation, symbols-and-glyphs, vocal-music"
@@ -43,7 +43,7 @@ splitStaffBarLineMarkup = \markup \with-dimensions #'(0 . 0) #'(0 . 0) {
 }
 
 splitStaffBarLine = {
-  \once \override Staff.BarLine #'stencil =
+  \once \override Staff.BarLine.stencil =
     #(lambda (grob)
        (ly:stencil-combine-at-edge
         (ly:bar-line::print grob)
@@ -98,7 +98,7 @@ splitStaffBarLine = {
   \layout {
     \context {
       \Staff \RemoveEmptyStaves
-      \override VerticalAxisGroup #'remove-first = ##t
+      \override VerticalAxisGroup.remove-first = ##t
     }
   }
 }