]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-indicators-to-staves-which-get-split-after-a-break.ly
Merge branch 'master' of /home/jcharles/GIT/Lily/. into translation
[lilypond.git] / Documentation / snippets / adding-indicators-to-staves-which-get-split-after-a-break.ly
index 4d666d5fc85eec862d95d709cd5eb47da8339069..979460c6dc16777bf96bcd569abc8a95a9f0fe7d 100644 (file)
@@ -4,10 +4,10 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.11"
 
 \header {
-  lsrtags = "vocal-music, symbols-and-glyphs, staff-notation"
+  lsrtags = "staff-notation, symbols-and-glyphs, vocal-music"
 
   texidoc = "
 This snippet defines the @code{\\splitStaffBarLine} command, which adds
@@ -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,8 +98,7 @@ splitStaffBarLine = {
   \layout {
     \context {
       \Staff \RemoveEmptyStaves
-      \override VerticalAxisGroup #'remove-first = ##t
+      \override VerticalAxisGroup.remove-first = ##t
     }
   }
 }
-