aboutsummaryrefslogtreecommitdiff
path: root/repl.c
diff options
context:
space:
mode:
Diffstat (limited to 'repl.c')
-rw-r--r--repl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/repl.c b/repl.c
index 42d6bd1..fd204b0 100644
--- a/repl.c
+++ b/repl.c
@@ -24,7 +24,7 @@
static void
run (struct context *ctx, struct item *program) {
struct item *result = NULL;
- (void) execute (ctx, program, &result);
+ (void) execute_block (ctx, program, NULL, &result);
item_free_list (program);
const char *failure = ctx->error;