]> git.donarmstrong.com Git - lilypond.git/commitdiff
small fixes
authorHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 Aug 2002 15:45:01 +0000 (15:45 +0000)
committerHan-Wen Nienhuys <hanwen@xs4all.nl>
Sat, 17 Aug 2002 15:45:01 +0000 (15:45 +0000)
lily/break-substitution.cc

index 31a887e20cafd39eaf2de6326fa60d170d9e49f9..44fcea0fbc48f038e0dfa9cb3c016aac0585926f 100644 (file)
@@ -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;