1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

* gc.c (scm_gc_mark): Don't use GUILE_DEBUG flag to compile in

extra tests.  (GUILE_DEBUG is only supposed to make extra
debugging functions available.)
This commit is contained in:
Mikael Djurfeldt 2000-08-23 18:22:07 +00:00
parent ca55e62c8e
commit 641d17a83a

View file

@ -1122,7 +1122,7 @@ gc_mark_nimp:
if (!SCM_CELLP (ptr))
SCM_MISC_ERROR ("rogue pointer in heap", SCM_EOL);
#if (defined (GUILE_DEBUG) || defined (GUILE_DEBUG_FREELIST))
#if (defined (GUILE_DEBUG_FREELIST))
if (SCM_GC_IN_CARD_HEADERP (SCM2PTR (ptr)))
scm_wta (ptr, "rogue pointer in heap", NULL);