From 6799e8f07830bc61818c28b8ce641018af95fb66 Mon Sep 17 00:00:00 2001 From: dzaima Date: Tue, 3 Aug 2021 16:51:25 +0300 Subject: [PATCH] =?UTF-8?q?fix=20>0=E2=A5=8A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/stuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/stuff.c b/src/core/stuff.c index 5e8de2ac..b0c98d3d 100644 --- a/src/core/stuff.c +++ b/src/core/stuff.c @@ -479,7 +479,7 @@ B bqn_merge(B x) { // consumes ur xr = rnk(x); if (xia==0) { B xf = getFillE(x); - if (isAtm(xf)) { dec(x); dec(xf); return x; } + if (isAtm(xf)) { dec(xf); return x; } i32 xfr = rnk(xf); B xff = getFillQ(xf); Arr* r = m_fillarrp(0);