aboutsummaryrefslogtreecommitdiff
path: root/ell.c
diff options
context:
space:
mode:
authorPřemysl Janouch <p.janouch@gmail.com>2017-05-28 10:02:19 +0200
committerPřemysl Janouch <p.janouch@gmail.com>2017-05-28 10:02:19 +0200
commit4698e522cc1182244a1b509d17a29b1cbdcba443 (patch)
tree035ebb420da9741665ab0ce1004857f4fb3b0411 /ell.c
parent81853a37fb4f6861220c727c967977797e02a71c (diff)
downloadell-4698e522cc1182244a1b509d17a29b1cbdcba443.tar.gz
ell-4698e522cc1182244a1b509d17a29b1cbdcba443.tar.xz
ell-4698e522cc1182244a1b509d17a29b1cbdcba443.zip
Fix regression in multiplication
Diffstat (limited to 'ell.c')
-rw-r--r--ell.c2
1 files changed, 1 insertions, 1 deletions
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;