From: hanwen Date: Sat, 17 Aug 2002 15:45:01 +0000 (+0000) Subject: small fixes X-Git-Tag: release/1.7.25~861 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3d22255fe54c71cd51a31d8cdb3cd52cde74fb5b;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;