]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/beam-beat-grouping.ly
Release: bump Welcome versions.
[lilypond.git] / input / regression / beam-beat-grouping.ly
index a9c22a44779f637a9817ab9b83162dd01f26738b..8137ffd06ab5f87ed8c28ea82e183364bf8a82ac 100644 (file)
@@ -1,18 +1,19 @@
 \header {
 
-  texidoc = "Beaming patterns obey the @code{beatGrouping} property. "
+  texidoc = "Default beaming patterns can be set for the current time
+signature. "
   }
 
 \layout {
   ragged-right = ##t
   }
-\version "2.11.51"
+\version "2.19.40"
 
 
-\relative c'' {
+\relative {
   \time 5/16
-  \set beatGrouping = #'(2 3)
-  c8[^"(2+3)" c16 c8]
-  \set beatGrouping = #'(3 2)
+  \set beatStructure = 2,3
+  c''8[^"(2+3)" c16 c8]
+  \set beatStructure = 3,2
   c8[^"(3+2)" c16 c8]
 }