From df09b8bea95aea9958cd9a57ed1ffba53a7936c2 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sun, 2 May 2021 10:45:51 -0400 Subject: Make sure to clear the fill if there's a fill error --- docs/bqn.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/bqn.js b/docs/bqn.js index 88aefc18..5cf0b931 100644 --- a/docs/bqn.js +++ b/docs/bqn.js @@ -218,7 +218,9 @@ let fill_by = (f,g) => (x,w) => { : !w.sh ? a2fill(w) : has(w.fill) ? w.fill : runtime[42]; r.fill=tofill(g(xf,wf)); - } catch(e){} + } catch(e){ + r.fill=undefined; + } } return r; } -- cgit v1.2.3