diff --git a/runtime.c b/runtime.c index 76f20af9..04636296 100644 --- a/runtime.c +++ b/runtime.c @@ -277,7 +277,9 @@ object find_or_add_symbol(const char *name){ /* END symbol table */ -/* Global table */ +/* Global table + A list is appropriate for this table because the only time + we use it is to iterate over all the globals... */ list global_table = nil; void add_global(object *glo) {