From 7a2531505d296de8a3ab4eaf82bc0577d695e8a3 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 23 Jan 2020 22:43:15 -0500 Subject: [PATCH] Set globals_changed --- runtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime.c b/runtime.c index 0e3a76c1..98473c3b 100644 --- a/runtime.c +++ b/runtime.c @@ -36,7 +36,7 @@ object Cyc_global_set2(void *thd, object cont, object * glo, object value) value = share_object(thd, NULL, value, &do_gc); gc_mut_update((gc_thread_data *) thd, *glo, value); *(glo) = value; -// ((gc_thread_data *) thd)->globals_changed = 1; // No longer needed?? + ((gc_thread_data *) thd)->globals_changed = 1; // No longer needed?? if (do_gc) { object buf[1]; buf[0] = value; GC(thd, cont, buf, 1);