]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/test/beam-auto-4-8.ly
class-ify bezier term cache
[lilypond.git] / input / test / beam-auto-4-8.ly
index 4a7e74eee83d12e1738d6026a6a6252294e371e7..60f1f8da7f5fefb8530350632e91d8aac0fb1d0e 100644 (file)
@@ -1,15 +1,17 @@
 
-\version "2.1.28"
-% keep for now, although merging into beam-auto-override is a possibility.
+%% \version "2.7.39"
+
+%% keep for now, although merging into beam-auto-override is a possibility.
 \header {
        texidoc = "@cindex Auto Beaming 4/8
 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)
@@ -17,8 +19,7 @@ You can override the automatic beaming settings.
      |  |  |   |--|
     x| x| x|  x| x|
 %}
-     c8 c c c16 c
-
+  c8 c c c16 c
 
 %{
     user override
@@ -26,11 +27,13 @@ You can override the automatic beaming settings.
      |  |  |   |--|
     x| x| x|  x| x|
 %}
-     #(override-auto-beam-setting '(end * * * *)  2 4)
-     c8 c c c16 c
-
-  }
-\paper{raggedright = ##t}
+  %% 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
 }