From b5cc560befb434f859c1097d3664148c2a8241af Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sat, 24 Jul 2021 23:46:11 +0200 Subject: [PATCH] :bug: Fix Ref thingy --- src/parse/check.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.43.0