about summary refs log tree commit diff stats
path: root/html/edit/005-sandbox.mu.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-04-18 11:33:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-04-18 11:33:33 -0700
commit6c52e24e2996a77aa6297b26159003d503aef8a0 (patch)
tree7546851659eca4b166e42c4a5f236caf0a2281f1 /html/edit/005-sandbox.mu.html
parentbd58d18a2308ae5b53a6f5df1e67203739396d8f (diff)
downloadmu-6c52e24e2996a77aa6297b26159003d503aef8a0.tar.gz
3830 - crosslink shape-shifting containers in html
Diffstat (limited to 'html/edit/005-sandbox.mu.html')
-rw-r--r--html/edit/005-sandbox.mu.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/html/edit/005-sandbox.mu.html b/html/edit/005-sandbox.mu.html
index 8346152a..9eb7d9f8 100644
--- a/html/edit/005-sandbox.mu.html
+++ b/html/edit/005-sandbox.mu.html
@@ -227,7 +227,7 @@ if ('onhashchange' in window) {
 <span id="L164" class="LineNr"> 164 </span>  <span class="Conceal">¦</span> sandbox-count <span class="Special">&lt;-</span> add sandbox-count,<span class="Constant"> 1</span>
 <span id="L165" class="LineNr"> 165 </span>  <span class="Conceal">¦</span> *env <span class="Special">&lt;-</span> put *env, <span class="Constant">number-of-sandboxes:offset</span>, sandbox-count
 <span id="L166" class="LineNr"> 166 </span>  <span class="Conceal">¦</span> <span class="Comment"># clear sandbox editor</span>
-<span id="L167" class="LineNr"> 167 </span>  <span class="Conceal">¦</span> init:&amp;:duplex-list:char <span class="Special">&lt;-</span> push <span class="Constant">167/§</span>, <span class="Constant">0/tail</span>
+<span id="L167" class="LineNr"> 167 </span>  <span class="Conceal">¦</span> init:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> push <span class="Constant">167/§</span>, <span class="Constant">0/tail</span>
 <span id="L168" class="LineNr"> 168 </span>  <span class="Conceal">¦</span> *current-sandbox <span class="Special">&lt;-</span> put *current-sandbox, <span class="Constant">data:offset</span>, init
 <span id="L169" class="LineNr"> 169 </span>  <span class="Conceal">¦</span> *current-sandbox <span class="Special">&lt;-</span> put *current-sandbox, <span class="Constant">top-of-screen:offset</span>, init
 <span id="L170" class="LineNr"> 170 </span>  <span class="Delimiter">}</span>
@@ -759,8 +759,8 @@ if ('onhashchange' in window) {
 <span id="L696" class="LineNr"> 696 </span><span class="muRecipe">def</span> <a href='005-sandbox.mu.html#L696'>editor-contents</a> editor:&amp;:editor<span class="muRecipe"> -&gt; </span>result:text [
 <span id="L697" class="LineNr"> 697 </span>  <span class="Constant">local-scope</span>
 <span id="L698" class="LineNr"> 698 </span>  <span class="Constant">load-ingredients</span>
-<span id="L699" class="LineNr"> 699 </span>  buf:&amp;:buffer <span class="Special">&lt;-</span> <a href='../061text.mu.html#L131'>new-buffer</a><span class="Constant"> 80</span>
-<span id="L700" class="LineNr"> 700 </span>  curr:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">data:offset</span>
+<span id="L699" class="LineNr"> 699 </span>  buf:&amp;:<a href='../061text.mu.html#L126'>buffer</a> <span class="Special">&lt;-</span> <a href='../061text.mu.html#L131'>new-buffer</a><span class="Constant"> 80</span>
+<span id="L700" class="LineNr"> 700 </span>  curr:&amp;:<a href='../065duplex_list.mu.html#L3'>duplex-list</a>:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">data:offset</span>
 <span id="L701" class="LineNr"> 701 </span>  <span class="Comment"># skip § sentinel</span>
 <span id="L702" class="LineNr"> 702 </span>  assert curr, <span class="Constant">[editor without data is illegal; must have at least a sentinel]</span>
 <span id="L703" class="LineNr"> 703 </span>  curr <span class="Special">&lt;-</span> <a href='../065duplex_list.mu.html#L29'>next</a> curr