From ec62856b6721bd52238985c05fae2832b5e7efef Mon Sep 17 00:00:00 2001 From: dzaima Date: Wed, 19 Oct 2022 19:19:11 +0300 Subject: [PATCH] =?UTF-8?q?=E2=80=A2listsys?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/builtins/sysfn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/builtins/sysfn.c b/src/builtins/sysfn.c index 699bdf0e..bd4d9115 100644 --- a/src/builtins/sysfn.c +++ b/src/builtins/sysfn.c @@ -1415,7 +1415,8 @@ static Body* file_nsGen; F("wdpath", U"•wdpath", tag(13,VAR_TAG)) \ F("file", U"•file", tag(14,VAR_TAG)) \ F("state", U"•state", tag(15,VAR_TAG)) \ - F("args", U"•args", tag(16,VAR_TAG)) + F("args", U"•args", tag(16,VAR_TAG)) \ + F("listsys", U"•listsys", tag(17,VAR_TAG)) NFnDesc* ffiloadDesc; B ffiload_c2(B t, B w, B x); @@ -1511,6 +1512,7 @@ B sys_c1(B t, B x) { cr = inc(comp_currArgs); break; } + case 17: cr = incG(curr_ns); } HARR_ADD(r, i, cr); }