From 3e68a09ae1617551ca1cbf3b5b72621170b4aa0c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Fri, 26 May 2017 19:44:03 +0200 Subject: Remove suck struct context::arguments stank, the "arg" special form stank. The amount of lines this adds can be counted on one hand. --- repl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repl.c') 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; -- cgit v1.2.3