# HG changeset patch # User Gerd Moellmann # Date 971870330 0 # Node ID 350e0378e6f906f43b48bc23bfc11562c68cbe50 # Parent 0c09f18456e3724a895118a64c509eccc8e3cd16 (allocate_string) [GC_CHECK_STRING_BYTES]: Call check_string_bytes only if not noninteractive, increase count to 50. diff -r 0c09f18456e3 -r 350e0378e6f9 src/alloc.c --- a/src/alloc.c Wed Oct 18 11:58:27 2000 +0000 +++ b/src/alloc.c Wed Oct 18 11:58:50 2000 +0000 @@ -1138,7 +1138,7 @@ consing_since_gc += sizeof *s; #ifdef GC_CHECK_STRING_BYTES - if (++check_string_bytes_count == 10) + if (!noninteractive && ++check_string_bytes_count == 50) { check_string_bytes_count = 0; check_string_bytes ();