From 59cadb06fe927ccd9066e510678e0e062b96371a Mon Sep 17 00:00:00 2001 From: dzaima Date: Thu, 8 Sep 2022 00:56:31 +0300 Subject: [PATCH] =?UTF-8?q?fix=20=E2=9F=A8=E2=9F=A8=E2=9F=A9=E2=9F=A9?= =?UTF-8?q?=E2=8A=8F=E2=9F=A8=E2=9F=A9=20incorrectly=20erroring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit incl. ⟨⟨⟩,⟨⟩⟩⊏0‿0⥊⟨⟩, ⟨⟨⟩⟩⊏0‿0⥊⟨⟩, etc --- src/builtins/select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtins/select.c b/src/builtins/select.c index 981fb13f..13e6b72e 100644 --- a/src/builtins/select.c +++ b/src/builtins/select.c @@ -63,7 +63,7 @@ B select_c2(B t, B w, B x) { return r; } usz xia = IA(x); - if (xia==0) thrM("⊏: Indexing out-of-bounds (0≡≠𝕩)"); + if (xia==0) goto base; // can't just error immediately because depth 2 𝕨 u8 xe = TI(x,elType); u8 we = TI(w,elType); #if SINGELI