]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-lines-in-a-staff.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / changing-the-number-of-lines-in-a-staff.ly
index 5844f597eff6e041aaf056bac12ccda8a9613075..c4c53e5c320b6f2301d7d0f773f4ee832b863c96 100644 (file)
@@ -1,10 +1,13 @@
-%% Do not edit this file; it is automatically
+%% DO NOT EDIT this file manually; it is automatically
 %% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.31"
+\version "2.17.6"
 
 \header {
-  lsrtags = "staff-notation"
+  lsrtags = "specific-notation, staff-notation"
 
   texidoc = "
 The number of lines in a staff may changed by overriding the
@@ -17,6 +20,7 @@ The number of lines in a staff may changed by overriding the
   doctitle = "Changing the number of lines in a staff"
 } % begin verbatim
 
+
 upper = \relative c'' {
   c4 d e f
 }
@@ -32,9 +36,8 @@ lower = \relative c {
       \upper
     }
     \new Staff {
-      \override Staff.StaffSymbol #'line-count = #4
+      \override Staff.StaffSymbol.line-count = #4
       \lower
     }
   >>
 }
-