]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/printing-bar-numbers-with-changing-regular-intervals.ly
Doc: dot to comma in a list.
[lilypond.git] / Documentation / snippets / printing-bar-numbers-with-changing-regular-intervals.ly
index 62c65c418c1d74b630bbad80e787f28409d565af..a78462a87b10cdf77a68a3d8ab2f64e713a4a87e 100644 (file)
@@ -1,10 +1,9 @@
-% DO NOT EDIT this file manually; it is automatically
-% generated from Documentation/snippets/new
-% Make any changes in Documentation/snippets/new/
-% and then run scripts/auxiliar/makelsr.py
-%
-% This file is in the public domain.
-%% Note: this file works from version 2.18.0
+%% DO NOT EDIT this file manually; it is automatically
+%% 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.18.0"
 
 \header {
 
   texidoc = "
 The bar number interval can be changed by changing the context function
-@code{set-bar-number-visibility}.
+@code{@{set-bar-number-visibility@}}.
 
 "
   doctitle = "Printing bar numbers with changing regular intervals"
 } % begin verbatim
 
-
 \relative c' {
   \override Score.BarNumber.break-visibility = #end-of-line-invisible
   \context Score \applyContext #(set-bar-number-visibility 4)
-  \repeat unfold 10 c''1
+  \repeat unfold 10 c'1
   \context Score \applyContext #(set-bar-number-visibility 2)
-  \repeat unfold 10 c''
-} % begin verbatim
+  \repeat unfold 10 c
+}