From e25b8dbc2781bb4a5801ced1e5157a11114cb03d Mon Sep 17 00:00:00 2001 From: Carl Sorensen Date: Wed, 5 Aug 2009 20:30:05 -0600 Subject: [PATCH] Fix autobeaming error in partial measures --- input/regression/auto-beam-partial.ly | 13 +++++++++++++ scm/auto-beam.scm | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 input/regression/auto-beam-partial.ly diff --git a/input/regression/auto-beam-partial.ly b/input/regression/auto-beam-partial.ly new file mode 100644 index 0000000000..a5f5e050bc --- /dev/null +++ b/input/regression/auto-beam-partial.ly @@ -0,0 +1,13 @@ +\header { + texidoc="Autobeaming works properly in partial measures." +} + +\version "2.13.4" + + + +\relative c'' { + \time 6/8 + \partial 2 + a8 a a a | +} diff --git a/scm/auto-beam.scm b/scm/auto-beam.scm index 1e77399b06..784590ab5f 100644 --- a/scm/auto-beam.scm +++ b/scm/auto-beam.scm @@ -85,4 +85,4 @@ ;; start/end at beginning of measure (= (ly:moment-main-numerator pos) 0) ;; end if measure-pos matches a specified ending moment - (member measure-pos grouping-moments))))))) + (member pos grouping-moments))))))) -- 2.39.2