]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/adding-an-extra-staff-at-a-line-break.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / adding-an-extra-staff-at-a-line-break.ly
index 50e7b201786dc96942367071f3b4e7d1f14f5b30..2c74e33ce678a85198a00095d116e86c73bef760 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.14.2"
+\version "2.17.6"
 
 \header {
   lsrtags = "breaks, contexts-and-engravers, staff-notation, workaround"
@@ -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
        }
     >>