From: Jérémie Astor Date: Sat, 24 Jul 2021 21:46:11 +0000 (+0200) Subject: :bug: Fix Ref thingy X-Git-Tag: nightly~519 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=b5cc560befb434f859c1097d3664148c2a8241af;p=gwion.git :bug: Fix Ref thingy --- diff --git a/src/parse/check.c b/src/parse/check.c index 06196e69..a27b538c 100644 --- a/src/parse/check.c +++ b/src/parse/check.c @@ -496,7 +496,7 @@ static Func find_func_match_actual(const Env env, Func func, const Exp args, while (e) { if (!e->type) // investigate return NULL; - if (!strncmp(e->type->name, "Ref:[", 5)) exp_setvar(e, true); +// if (!strncmp(e->type->name, "Ref:[", 5)) exp_setvar(e, true); if (!e1) { if (fbflag(func->def->base, fbflag_variadic)) return func; CHECK_OO(func->next);