Mercurial > emacs
changeset 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 | 0c09f18456e3 |
children | d353805694a8 |
files | src/alloc.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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 ();