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>2017-03-12 00:31:55 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-03-12 00:34:02 -0800
commit2c53c3d0a921aec9825946be8dc37eff95b95485 (patch)
tree598e12608182300a97529082e317b36373ce6a36 /html/edit/010-sandbox-trace.mu.html
parent465229a22a68f9c5cb94ba7853c44328f1bf85c1 (diff)
downloadmu-2c53c3d0a921aec9825946be8dc37eff95b95485.tar.gz
3789
I accidentally got rid of git snapshotting of lessons back when I switched
to testable file primitives last December (commit 3705).

>:-(

Bringing it back now, hopefully better. The improvement is that there's
now at most one commit every time we hit F4.

This change adds yet another reason that running `mu` from a different
directory is just not supported.
Diffstat (limited to 'html/edit/010-sandbox-trace.mu.html')
-rw-r--r--html/edit/010-sandbox-trace.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/edit/010-sandbox-trace.mu.html b/html/edit/010-sandbox-trace.mu.html
index 2cf2dc0f..39714aa5 100644
--- a/html/edit/010-sandbox-trace.mu.html
+++ b/html/edit/010-sandbox-trace.mu.html
@@ -304,13 +304,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#L283'>&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#L285'>&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>  <span class="Conceal">¦</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="Conceal">¦</span> <span class="muControl">break-unless</span> display-trace?
 <span id="L248" class="LineNr">248 </span>  <span class="Conceal">¦</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="Conceal">¦</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>  <span class="Conceal">¦</span> row, <a href='../081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='005-sandbox.mu.html#L356'>render-text</a> <a href='../081print.mu.html#L4'>screen</a>, sandbox-trace, left, right, <span class="Constant">245/grey</span>, row
+<span id="L250" class="LineNr">250 </span>  <span class="Conceal">¦</span> row, <a href='../081print.mu.html#L4'>screen</a> <span class="Special">&lt;-</span> <a href='005-sandbox.mu.html#L358'>render-text</a> <a href='../081print.mu.html#L4'>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>]