From: hanwen Date: Fri, 13 Feb 2004 20:33:22 +0000 (+0000) Subject: * lily/auto-beam-engraver.cc (test_moment): use X-Git-Tag: release/2.1.27~70 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=d38beab41c3a6bd81bbd8305f2f27ea9b783ee88;p=lilypond.git * lily/auto-beam-engraver.cc (test_moment): use updated_grob_properties() to retrieve autoBeam settings. * input/GNUmakefile (SUBDIRS): remove ascii-art --- diff --git a/ChangeLog b/ChangeLog index d872f1cd09..8d12460972 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-02-13 Han-Wen Nienhuys + * lily/auto-beam-engraver.cc (test_moment): use + updated_grob_properties() to retrieve autoBeam settings. + * lily/spacing-spanner.cc: bound shortest_playing_len by measure_length diff --git a/lily/auto-beam-engraver.cc b/lily/auto-beam-engraver.cc index 968120323b..9b743ca57a 100644 --- a/lily/auto-beam-engraver.cc +++ b/lily/auto-beam-engraver.cc @@ -145,7 +145,11 @@ Auto_beam_engraver::test_moment (Direction dir, Moment test_mom) SCM type = scm_list_n (scm_int2num (test_mom.num ()), scm_int2num (test_mom.den ()), SCM_UNDEFINED); - SCM settings = get_property ("autoBeamSettings"); + /* + UGH UGH. + settings aren't grob-properties. + */ + SCM settings = updated_grob_properties (daddy_trans_, ly_symbol2scm ("autoBeamSettings")); /* first guess */