]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-number-of-lines-in-a-staff.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / changing-the-number-of-lines-in-a-staff.ly
index f932516241c5f43dff9f485197108f27f21b4563..08a8d99202476a181d87123794e37677c5ef68ec 100644 (file)
@@ -1,22 +1,14 @@
 %% 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 {
   lsrtags = "specific-notation, staff-notation"
 
-%% 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"
-
   texidoc = "
 The number of lines in a staff may changed by overriding the
 @code{StaffSymbol} property @code{line-count}.
@@ -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
     }
   >>
 }
-