about summary refs log tree commit diff stats
path: root/html/edit/010-sandbox-trace.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2018-02-18 15:55:42 -0800
committerKartik K. Agaram <vc@akkartik.com>2018-02-18 15:55:42 -0800
commit94ffc3776c8037416e4834eb5b94644587c18e10 (patch)
treebd27e5555427959a336916bec9f94cc058f29396 /html/edit/010-sandbox-trace.mu.html
parentcbeb3ca796bc8d2d8ccd7aaea62d450410b3ef79 (diff)
downloadmu-94ffc3776c8037416e4834eb5b94644587c18e10.tar.gz
4209
Diffstat (limited to 'html/edit/010-sandbox-trace.mu.html')
-rw-r--r--html/edit/010-sandbox-trace.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/edit/010-sandbox-trace.mu.html b/html/edit/010-sandbox-trace.mu.html
index afa5c57f..fea30168 100644
--- a/html/edit/010-sandbox-trace.mu.html
+++ b/html/edit/010-sandbox-trace.mu.html
@@ -266,7 +266,7 @@ if ('onhashchange' in window) {
 <span id="L204" class="LineNr">204 </span>    x <span class="Special">&lt;-</span> not x
 <span id="L205" class="LineNr">205 </span>    *sandbox <span class="Special">&lt;-</span> put *sandbox, <span class="Constant">display-trace?:offset</span>, x
 <span id="L206" class="LineNr">206 </span>    <a href='../081print.mu.html#L16'>screen</a> <span class="Special">&lt;-</span> render-sandbox-side <a href='../081print.mu.html#L16'>screen</a>, env, <a href='001-editor.mu.html#L107'>render</a>
-<span id="L207" class="LineNr">207 </span>    <a href='../081print.mu.html#L16'>screen</a> <span class="Special">&lt;-</span> <a href='004-programming-environment.mu.html#L472'>update-cursor</a> <a href='../081print.mu.html#L16'>screen</a>, recipes, current-sandbox, sandbox-in-focus?, env
+<span id="L207" class="LineNr">207 </span>    <a href='../081print.mu.html#L16'>screen</a> <span class="Special">&lt;-</span> <a href='004-programming-environment.mu.html#L468'>update-cursor</a> <a href='../081print.mu.html#L16'>screen</a>, recipes, current-sandbox, sandbox-in-focus?, env
 <span id="L208" class="LineNr">208 </span>   <span class="muControl"> loop</span> <span class="Constant">+next-event</span>
 <span id="L209" class="LineNr">209 </span>  <span class="Delimiter">}</span>
 <span id="L210" class="LineNr">210 </span>]
@@ -303,13 +303,13 @@ if ('onhashchange' in window) {
 <span id="L241" class="LineNr">241 </span>]
 <span id="L242" class="LineNr">242 </span>
 <span id="L243" class="LineNr">243 </span><span class="Comment"># when rendering a sandbox, dump its trace before response/warning if display-trace? property is set</span>
-<span id="L244" class="LineNr">244 </span><span class="muRecipe">after</span> <span class="Constant"><a href='005-sandbox.mu.html#L302'>&lt;render-sandbox-results&gt;</a></span> [
+<span id="L244" class="LineNr">244 </span><span class="muRecipe">after</span> <span class="Constant"><a href='005-sandbox.mu.html#L300'>&lt;render-sandbox-results&gt;</a></span> [
 <span id="L245" class="LineNr">245 </span>  <span class="Delimiter">{</span>
 <span id="L246" class="LineNr">246 </span>    display-trace?:bool <span class="Special">&lt;-</span> get *sandbox, <span class="Constant">display-trace?:offset</span>
 <span id="L247" class="LineNr">247 </span>    <span class="muControl">break-unless</span> display-trace?
 <span id="L248" class="LineNr">248 </span>    sandbox-trace:text <span class="Special">&lt;-</span> get *sandbox, <span class="Constant">trace:offset</span>
 <span id="L249" class="LineNr">249 </span>    <span class="muControl">break-unless</span> sandbox-trace  <span class="Comment"># nothing to print; move on</span>
-<span id="L250" class="LineNr">250 </span>    row, <a href='../081print.mu.html#L16'>screen</a> <span class="Special">&lt;-</span> <a href='005-sandbox.mu.html#L398'>render-text</a> <a href='../081print.mu.html#L16'>screen</a>, sandbox-trace, left, right, <span class="Constant">245/grey</span>, row
+<span id="L250" class="LineNr">250 </span>    row, <a href='../081print.mu.html#L16'>screen</a> <span class="Special">&lt;-</span> <a href='005-sandbox.mu.html#L396'>render-text</a> <a href='../081print.mu.html#L16'>screen</a>, sandbox-trace, left, right, <span class="Constant">245/grey</span>, row
 <span id="L251" class="LineNr">251 </span>  <span class="Delimiter">}</span>
 <span id="L252" class="LineNr">252 </span><span class="Constant">  <a href='010-sandbox-trace.mu.html#L252'>&lt;render-sandbox-trace-done&gt;</a></span>
 <span id="L253" class="LineNr">253 </span>]