diff options
Diffstat (limited to 'libguile/gc.c')
-rw-r--r-- | libguile/gc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libguile/gc.c b/libguile/gc.c index 696e32148..2680dd6f9 100644 --- a/libguile/gc.c +++ b/libguile/gc.c @@ -82,9 +82,8 @@ int scm_expensive_debug_cell_accesses_p = 0; int scm_debug_cells_gc_interval = 0; /* Hash table that keeps a reference to objects the user wants to protect from - garbage collection. It could arguably be private but applications have come - to rely on it (e.g., Lilypond 2.13.9). */ -SCM scm_protects; + garbage collection. */ +static SCM scm_protects; #if (SCM_DEBUG_CELL_ACCESSES == 1) |