]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-auto-4-8.ly
bump .ly \version to 2.10.0
[lilypond.git] / input / test / beam-auto-4-8.ly
index e0c4eac549ef7907cb96a017cf68655b2b9230ec..4a8c426716d09210fe3133af480987938b8c008a 100644 (file)
@@ -1,14 +1,17 @@
-\version "1.7.18"
-% keep for now, although merging into beam-auto-override is a possibility.
+
+%% \version "2.10.0"
+
+%% keep for now, although merging into beam-auto-override is a possibility.
 \header {
        texidoc = "@cindex Auto Beaming 4/8
-You can override Lilypond's automatic beaming.
+You can override the automatic beaming settings.
 "
 }
 
-\score{
-   \notes\relative c''{
-     \time 4/8
+\layout{ragged-right = ##t}
+
+\relative c''{
+  \time 4/8
 
 %{
     the default for 4/8 (see scm/auto-beam.scm)
@@ -16,8 +19,7 @@ You can override Lilypond's automatic beaming.
      |  |  |   |--|
     x| x| x|  x| x|
 %}
-     c8 c c c16 c
-
+  c8 c c c16 c
 
 %{
     user override
@@ -25,10 +27,13 @@ You can override Lilypond's automatic beaming.
      |  |  |   |--|
     x| x| x|  x| x|
 %}
-     \property Voice.autoBeamSettings \override #'(end * * * *) = #(ly:make-moment 2 4)
-     c8 c c c16 c
-
-  }
+  %% This has now (2.5.21) changed, (end * * * *) no longer
+  %% masks the default config entry ('(end * * 4 8) 1 4))
+  %% rather than masking by override:
+  %% #(override-auto-beam-setting '(end * * * *) 2 4)
+  %% revert the config file setting.
+  #(revert-auto-beam-setting '(end * * 4 8) 1 4)
+  c8 c c c16 c
 }
     
-%% new-chords-done %%
+