diff options
| -rw-r--r-- | docs/bqn.js | 4 |
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; } |
