From 9a938d3ce26b2d3728d791c0f858acdbd50223b5 Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Sun, 23 Jan 2022 21:16:02 +0000 Subject: =?UTF-8?q?Rework=20symbol=20lookup=20to=20use=20lexical=20scoping?= =?UTF-8?q?,=20and=20implement=20recursive=20function=20call=20via=20?= =?UTF-8?q?=E2=88=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hybrids.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hybrids.c') diff --git a/hybrids.c b/hybrids.c index 00977da..2ac2a91 100644 --- a/hybrids.c +++ b/hybrids.c @@ -61,7 +61,7 @@ opReduceFirst(Datum *lefto, Array *left, Array *right) return fnSame(right); int n = right->shape[0]; - int io = currentsymtab->io; + int io = globalIO(); if(n == 0) throwerror(L"Can't figure out identity element", ENotImplemented); -- cgit v1.2.3