]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-lines-in-a-staff.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / changing-the-number-of-lines-in-a-staff.ly
index 80a6c72adcc7e8b6ada6cb6037ed02fbef4ffa10..08a8d99202476a181d87123794e37677c5ef68ec 100644 (file)
@@ -1,20 +1,12 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.14.2"
+\version "2.18.0"
 
 \header {
-%% Translation of GIT committish: 1cda7b7b8219cb97399b8e7b56c1115aaf82c002
-  texidocfr = "
-Le nombre de lignes d'un portée se modifie par adaptation de la
-propriété @code{line-count} du @code{StaffSymbol}.
-
-"
-  doctitlefr = "Modification du nombre de lignes de la portée"
-
   lsrtags = "specific-notation, staff-notation"
 
   texidoc = "
@@ -28,7 +20,6 @@ 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
 }
@@ -44,9 +35,8 @@ lower = \relative c {
       \upper
     }
     \new Staff {
-      \override Staff.StaffSymbol #'line-count = #4
+      \override Staff.StaffSymbol.line-count = #4
       \lower
     }
   >>
 }
-