]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-form-of-multi-measure-rests.ly
Imported Upstream version 2.19.45
[lilypond.git] / Documentation / snippets / changing-form-of-multi-measure-rests.ly
index 118341b7a8a8acc192c31b6b0b3ec15b28620fe9..3e4c3fcb2ec041040c56a48a24786f6690916c2a 100644 (file)
@@ -1,10 +1,12 @@
-%% 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.17.6"
+% 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.19.20
+
+\version "2.19.20"
 
 \header {
   lsrtags = "rhythms, tweaks-and-overrides"
@@ -22,8 +24,9 @@ default number of ten may be changed by overriding the
 
 
 \relative c'' {
-  \compressFullBarRests
-  R1*2 | R1*5 | R1*9
-  \override MultiMeasureRest.expand-limit = #3
-  R1*2 | R1*5 | R1*9
+  \compressMMRests {
+    R1*2 | R1*5 | R1*9
+    \override MultiMeasureRest.expand-limit = #3
+    R1*2 | R1*5 | R1*9
+  }
 }