Mercurial > emacs
diff src/alloc.c @ 32609:350e0378e6f9
(allocate_string) [GC_CHECK_STRING_BYTES]: Call
check_string_bytes only if not noninteractive, increase count to 50.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Wed, 18 Oct 2000 11:58:50 +0000 |
| parents | e0646c73bf81 |
| children | 0343fe9ef3ac |
line wrap: on
line diff
--- 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 ();
