]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
LSR updates
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index 4abab6c50b057511fa0f008c8c3989572b897e78..e67d4f2954e7a7785495f94be9dc776e4c7413fe 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 = "breaks, staff-notation, workaround, contexts-and-engravers"
+  lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround"
 
   texidoc = "
 When adding a new staff at a line break, some extra space is
@@ -30,7 +30,7 @@ workaround is to add a setting of
     << { c1 | c }
        \new Staff {
          \key f \major
-         \once \override Staff.TimeSignature #'stencil = ##f
+         \once \override Staff.TimeSignature.stencil = ##f
          c1 | c
        }
     >>
@@ -39,7 +39,7 @@ workaround is to add a setting of
        \new Staff {
          \once \set Staff.explicitKeySignatureVisibility = #end-of-line-invisible
          \key f \major
-         \once \override Staff.TimeSignature #'stencil = ##f
+         \once \override Staff.TimeSignature.stencil = ##f
          c1 | c
        }
     >>