aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-09 16:09:13 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-09 16:09:13 -0400
commit8e27f0e7969d0c6de035ca69e08ee298beb2edba (patch)
tree3ef6a048c94704c9f93fd6b8cb3d5321534f89bc /compile.c
parentf6487510d4fdc872424e3bec2b5aca251dee0056 (diff)
remove debug code
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index c3faf7da..ff721b4b 100644
--- a/compile.c
+++ b/compile.c
@@ -1938,7 +1938,6 @@ CORD compile(env_t *env, ast_t *ast)
CORD code = "({\n";
deferral_t *prev_deferred = env->deferred;
env = fresh_scope(env);
- printf("Prebinding block\n");
for (ast_list_t *stmt = stmts; stmt; stmt = stmt->next)
prebind_statement(env, stmt->ast);
for (ast_list_t *stmt = stmts; stmt; stmt = stmt->next) {