From 018c209cec3f0fc6be80f89897d31bf73ca913ae Mon Sep 17 00:00:00 2001 From: dzaima Date: Fri, 2 Jul 2021 14:41:22 +0300 Subject: [PATCH] =?UTF-8?q?fix=20=E2=9F=A8=E2=9F=A9/=F0=9D=95=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/builtins/sfns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/sfns.c b/src/builtins/sfns.c index c3e76b75..266f8e23 100644 --- a/src/builtins/sfns.c +++ b/src/builtins/sfns.c @@ -223,7 +223,7 @@ B slash_c1(B t, B x) { return r; } B slash_c2(B t, B w, B x) { - if (isArr(x) && rnk(x)==1 && isArr(w) && rnk(w)==1 && depth(w)==1) { + if (isArr(x) && rnk(x)==1 && isArr(w) && rnk(w)==1 && a(w)->ia && depth(w)==1) { usz wia = a(w)->ia; usz xia = a(x)->ia; B xf = getFillQ(x);