]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-count.ly
*** empty log message ***
[lilypond.git] / input / test / beam-count.ly
index 659a0abf00ae0a54c67d440254a801167fb50531..0e34ed00f24adc1da942e2c5c8221469e4ab8bb1 100644 (file)
@@ -1,22 +1,21 @@
 
-\version "1.9.2"
+\version "2.2.0"
 \header{
        texidoc="@cindex Beam Count
 
-You can alter the number of stems in a beam.  Here we see
-two sets of four 32nds joined as if they were 8th notes.
+You can alter the number of stems in a beam.  In this example,
+two sets of four 32nds are joined, as if they were 8th notes.
 
 " }
 
 fragment = \notes {
-  \property Voice.autoBeamSettings
-    \set #'(end * * * *) = #(ly:make-moment 1 4)
+  #(override-auto-beam-setting '(end * * * *)  1 4)
   f32 g a b b a g f
 
-  f32 g a 
-  \property Voice.stemRightBeamCount = #1  b
-  \property Voice.stemLeftBeamCount = #1 a
-   g f
+  f32 g a 
+  \set stemRightBeamCount = #1  b
+  \set stemLeftBeamCount = #1 b
+  a g f
 }