From: Han-Wen Nienhuys Date: Sat, 17 Aug 2002 15:45:01 +0000 (+0000) Subject: small fixes X-Git-Tag: release/1.5.74~5 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=2e44999ca61b294741901dee134326b7d1876131;p=lilypond.git small fixes --- diff --git a/lily/break-substitution.cc b/lily/break-substitution.cc index 31a887e20c..44fcea0fbc 100644 --- a/lily/break-substitution.cc +++ b/lily/break-substitution.cc @@ -328,15 +328,15 @@ Spanner::fast_fubstitute_grob_list (SCM sym, /* Only do this complicated thing for large lists. This has the added advantage that we won't screw up the ordering for elements in - alignments (which typically don't have more than 100 grobs.) + alignments (which typically don't have more than 10 grobs.) */ - if (len < 100) + if (len < 300) return false; /* - TODO : should not reallocate every time? + TODO : should not free it some time? */ static Substitution_entry * vec; static int vec_room;