diff options
author | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-23 21:16:02 +0000 |
---|---|---|
committer | Peter Mikkelsen <petermikkelsen10@gmail.com> | 2022-01-23 21:16:02 +0000 |
commit | 9a938d3ce26b2d3728d791c0f858acdbd50223b5 (patch) | |
tree | a64151c171f0c289847c83367a678fd3252f2f99 /hybrids.c | |
parent | 3aa88a917e8c44ab088498dcfc18c48e66ceb243 (diff) |
Rework symbol lookup to use lexical scoping, and implement recursive function call via ∇
Diffstat (limited to 'hybrids.c')
-rw-r--r-- | hybrids.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |