aboutsummaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-06-19 16:09:22 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-06-19 16:09:22 -0400
commit8724dcd82164921e8fba0641989bc88b8ce02ec6 (patch)
tree5560d5893d7903d1fb386d5009c0ade9c5f5067e /environment.c
parentc3a6e03bd2aebeddc1251c3e8ff925290b19226c (diff)
Fix issue with using libraries
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/environment.c b/environment.c
index aca60d28..dcd852e3 100644
--- a/environment.c
+++ b/environment.c
@@ -262,7 +262,6 @@ env_t *load_module_env(env_t *env, ast_t *ast)
for (ast_list_t *stmt = Match(ast, Block)->statements; stmt; stmt = stmt->next)
bind_statement(module_env, stmt->ast);
- Table$str_set(env->imports, name, module_env);
return module_env;
}