From 4698e522cc1182244a1b509d17a29b1cbdcba443 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Sun, 28 May 2017 10:02:19 +0200 Subject: Fix regression in multiplication --- ell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ell.c') diff --git a/ell.c b/ell.c index fdade77..a3a6e34 100644 --- a/ell.c +++ b/ell.c @@ -897,7 +897,7 @@ execute_statement static bool args_to_scope (struct context *ctx, struct item *args, struct item **scope) { if (!check (ctx, (args = new_list (args))) - || !scope_prepend (ctx, scope, "*", args)) + || !scope_prepend (ctx, scope, "args", args)) return false; size_t i = 0; -- cgit v1.2.3