]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
Rerun scripts/auxiliar/update-with-convert-ly.sh
[lilypond.git] / Documentation / snippets / removing-connecting-bar-lines-on-staffgroup,-pianostaff,-or-grandstaff.ly
index 9933bda29fc44609907c98ceeded6855741da6cd..fd0fdce66220359594db3d42c0b52dd51d44c54e 100644 (file)
@@ -1,20 +1,12 @@
-%% 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.16"
+\version "2.17.6"
 
 \header {
-%% Translation of GIT committish: 5a7301fc350ffc3ab5bd3a2084c91666c9e9a549
-  texidoces = "
-De forma predeterminada, las líneas divisorias en los grupos
-StaffGroup, PianoStaff o GrandStaff se conectan entre los pentagramas.
-Se puede alterar este comportamiento pentagrama a pentagrama.
-
-"
-  doctitlees = "Quitar las barras de compás entre los pentagramas de un StaffGroup PianoStaff o GrandStaff"
-
-
-
   lsrtags = "rhythms, tweaks-and-overrides"
 
   texidoc = "
@@ -26,16 +18,17 @@ a staff-by-staff basis.
   doctitle = "Removing connecting bar lines on StaffGroup PianoStaff or GrandStaff"
 } % begin verbatim
 
+
 \relative c' {
   \new StaffGroup <<
     \new Staff {
       e1 | e
-      \once \override Staff.BarLine #'allow-span-bar = ##f
+      \once \override Staff.BarLine.allow-span-bar = ##f
       e1 | e | e
     }
     \new Staff {
       c1 | c | c
-      \once \override Staff.BarLine #'allow-span-bar = ##f
+      \once \override Staff.BarLine.allow-span-bar = ##f
       c1 | c
     }
     \new Staff {
@@ -43,4 +36,3 @@ a staff-by-staff basis.
     }
   >>
 }
-