aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-02 10:45:51 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-02 10:45:51 -0400
commitdf09b8bea95aea9958cd9a57ed1ffba53a7936c2 (patch)
tree76f21a2dab020f8b98054af86952f76e81dc17ea /docs
parent1e1932c3314ce84ca590c5749494776e359437ad (diff)
Make sure to clear the fill if there's a fill error
Diffstat (limited to 'docs')
-rw-r--r--docs/bqn.js4
1 files changed, 3 insertions, 1 deletions
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;
}