diff options
Diffstat (limited to 'src/alloc.c')
| -rw-r--r-- | src/alloc.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/alloc.c b/src/alloc.c index b516695c0dd..4134d26fbd9 100644 --- a/src/alloc.c +++ b/src/alloc.c | |||
| @@ -1322,7 +1322,11 @@ allocate_string () | |||
| 1322 | consing_since_gc += sizeof *s; | 1322 | consing_since_gc += sizeof *s; |
| 1323 | 1323 | ||
| 1324 | #ifdef GC_CHECK_STRING_BYTES | 1324 | #ifdef GC_CHECK_STRING_BYTES |
| 1325 | if (!noninteractive) | 1325 | if (!noninteractive |
| 1326 | #ifdef macintosh | ||
| 1327 | && current_sblock | ||
| 1328 | #endif | ||
| 1329 | ) | ||
| 1326 | { | 1330 | { |
| 1327 | if (++check_string_bytes_count == 200) | 1331 | if (++check_string_bytes_count == 200) |
| 1328 | { | 1332 | { |