diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-07-18 15:22:49 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-07-18 15:22:49 -0700 |
commit | 762b099ef6c6ad5b6b61d29e473baa6df8d64ab9 (patch) | |
tree | 8075befbcc8ef2784616c4937793ebed9d21123d /html/074console.mu.html | |
parent | 614ea44bc2708a687ba10b162a6dc70e48dfac59 (diff) | |
download | mu-762b099ef6c6ad5b6b61d29e473baa6df8d64ab9.tar.gz |
1818
Diffstat (limited to 'html/074console.mu.html')
-rw-r--r-- | html/074console.mu.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/html/074console.mu.html b/html/074console.mu.html index 594f28c2..2b60d6f6 100644 --- a/html/074console.mu.html +++ b/html/074console.mu.html @@ -53,7 +53,7 @@ container console [ ] <span class="muRecipe">recipe</span> new-fake-console [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> result:address:console<span class="Special"> <- </span>new console:type buf:address:address:array:character<span class="Special"> <- </span>get-address result:address:console/deref, data:offset <span class="CommentedCode">#? $start-tracing #? 1</span> @@ -65,7 +65,7 @@ container console [ ] <span class="muRecipe">recipe</span> read-event [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> x:address:console<span class="Special"> <- </span><span class="Constant">next-ingredient</span> <span class="Delimiter">{</span> <span class="muControl">break-unless</span> x:address:console @@ -92,7 +92,7 @@ container console [ <span class="Comment"># isn't unicode, so no arrow keys, page-up/page-down, etc. But you still get</span> <span class="Comment"># newlines, tabs, ctrl-d..</span> <span class="muRecipe">recipe</span> read-key [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> <span class="CommentedCode">#? $print default-space:address:array:location #? 1</span> <span class="CommentedCode">#? $exit #? 1</span> <span class="CommentedCode">#? $start-tracing #? 1</span> @@ -110,7 +110,7 @@ container console [ ] <span class="muRecipe">recipe</span> send-keys-to-channel [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> console:address<span class="Special"> <- </span><span class="Constant">next-ingredient</span> chan:address:channel<span class="Special"> <- </span><span class="Constant">next-ingredient</span> screen:address<span class="Special"> <- </span><span class="Constant">next-ingredient</span> @@ -126,7 +126,7 @@ container console [ ] <span class="muRecipe">recipe</span> wait-for-event [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> console:address<span class="Special"> <- </span><span class="Constant">next-ingredient</span> <span class="Delimiter">{</span> _, console:address, found?:boolean<span class="Special"> <- </span>read-event console:address @@ -136,7 +136,7 @@ container console [ <span class="Comment"># use this helper to skip rendering if there's lots of other events queued up</span> <span class="muRecipe">recipe</span> has-more-events? [ - <span class="Constant">new-default-space</span> + <span class="Constant">local-scope</span> console:address<span class="Special"> <- </span><span class="Constant">next-ingredient</span> <span class="Delimiter">{</span> <span class="muControl">break-unless</span> console:address |