]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-count.ly
bump .ly \version to 2.10.0
[lilypond.git] / input / test / beam-count.ly
index b6348d54e4e59f25c4088e75190da426e24c1a1d..9ceb691cf40b7d1a3307a5faec0f24026a1a4a9a 100644 (file)
@@ -1,27 +1,27 @@
-\version "1.7.18"
+
+%%\version "2.10.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 {
-  f'32 g a b b a g f
+\layout { ragged-right = ##t}  
 
-  \property Voice.autoBeamSettings
-    \set #'(end * * * *) = #(ly:make-moment 1 4)
+\relative {
+  %% This has now (2.5.21) changed, (end * * * *) no longer
+  %% masks the default config entry ('(end * * 2 4) 1 4))
+  %% rather than masking by override:
+  %% #(override-auto-beam-setting '(end * * * *) 1 4)
+  %% revert the config file settings.
+  #(revert-auto-beam-setting '(end 1 32 4 4) 1 8)
+  #(revert-auto-beam-setting '(end 1 32 4 4) 3 8)
   f32 g a b b a g f
 
-  f32 g a
-  \property Voice.stemRightBeamCount = #1 b
-  \property Voice.stemLeftBeamCount = #1 b
+  f32 g a 
+  \set stemRightBeamCount = #1  b
+  \set stemLeftBeamCount = #1 b
   a g f
 }
-
-\paper { raggedright = ##t} 
-
-\score {
-  \notes\relative c \fragment
-  \paper { }  
-}
-%% new-chords-done %%