X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Ftest%2Fbeam-auto-4-8.ly;h=60f1f8da7f5fefb8530350632e91d8aac0fb1d0e;hb=39c26505b5e2af9f0529548dd3b27ffddf499057;hp=fe9a9ff08c4d03db8a6678d317511a70229cd2b1;hpb=e9bd265943d37689b1a6892217cb6f67bbe69f73;p=lilypond.git diff --git a/input/test/beam-auto-4-8.ly b/input/test/beam-auto-4-8.ly index fe9a9ff08c..60f1f8da7f 100644 --- a/input/test/beam-auto-4-8.ly +++ b/input/test/beam-auto-4-8.ly @@ -1,15 +1,17 @@ -#(ly:set-option 'old-relative) -\version "1.9.1" -% 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 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) @@ -17,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 @@ -26,11 +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 - - } -\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 }