about summary refs log tree commit diff stats
path: root/html/linux/tile/gap-buffer.mu.html
diff options
context:
space:
mode:
Diffstat (limited to 'html/linux/tile/gap-buffer.mu.html')
-rw-r--r--html/linux/tile/gap-buffer.mu.html102
1 files changed, 51 insertions, 51 deletions
diff --git a/html/linux/tile/gap-buffer.mu.html b/html/linux/tile/gap-buffer.mu.html
index 8adacb5b..fba0c57b 100644
--- a/html/linux/tile/gap-buffer.mu.html
+++ b/html/linux/tile/gap-buffer.mu.html
@@ -62,16 +62,16 @@ if ('onhashchange' in window) {
 <a href='https://github.com/akkartik/mu/blob/main/linux/tile/gap-buffer.mu'>https://github.com/akkartik/mu/blob/main/linux/tile/gap-buffer.mu</a>
 <pre id='vimCodeElement'>
 <span id="L1" class="LineNr">  1 </span><span class="PreProc">type</span> <a href='gap-buffer.mu.html#L1'>gap-buffer</a> <span class="Delimiter">{</span>
-<span id="L2" class="LineNr">  2 </span>  left: <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>
-<span id="L3" class="LineNr">  3 </span>  right: <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>
+<span id="L2" class="LineNr">  2 </span>  left: <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>
+<span id="L3" class="LineNr">  3 </span>  right: <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>
 <span id="L4" class="LineNr">  4 </span><span class="Delimiter">}</span>
 <span id="L5" class="LineNr">  5 </span>
 <span id="L6" class="LineNr">  6 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L6'>initialize-gap-buffer</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Delimiter">{</span>
 <span id="L7" class="LineNr">  7 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L8" class="LineNr">  8 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L9" class="LineNr">  9 </span>  <a href='grapheme-stack.mu.html#L6'>initialize-code-point-utf8-stack</a> left, <span class="Constant">0x10</span>/max-word-size
-<span id="L10" class="LineNr"> 10 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L11" class="LineNr"> 11 </span>  <a href='grapheme-stack.mu.html#L6'>initialize-code-point-utf8-stack</a> right, <span class="Constant">0x10</span>/max-word-size
+<span id="L8" class="LineNr">  8 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L9" class="LineNr">  9 </span>  <a href='grapheme-stack.mu.html#L6'>initialize-grapheme-stack</a> left, <span class="Constant">0x10</span>/max-word-size
+<span id="L10" class="LineNr"> 10 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L11" class="LineNr"> 11 </span>  <a href='grapheme-stack.mu.html#L6'>initialize-grapheme-stack</a> right, <span class="Constant">0x10</span>/max-word-size
 <span id="L12" class="LineNr"> 12 </span><span class="Delimiter">}</span>
 <span id="L13" class="LineNr"> 13 </span>
 <span id="L14" class="LineNr"> 14 </span><span class="muComment"># just for tests</span>
@@ -100,15 +100,15 @@ if ('onhashchange' in window) {
 <span id="L37" class="LineNr"> 37 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L37'>emit-gap-buffer</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>), out: (addr stream byte) <span class="Delimiter">{</span>
 <span id="L38" class="LineNr"> 38 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L39" class="LineNr"> 39 </span>  <a href='../106stream.subx.html#L17'>clear-stream</a> out
-<span id="L40" class="LineNr"> 40 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L40" class="LineNr"> 40 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
 <span id="L41" class="LineNr"> 41 </span>  <a href='gap-buffer.mu.html#L47'>emit-stack-from-bottom</a> left, out
-<span id="L42" class="LineNr"> 42 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L42" class="LineNr"> 42 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
 <span id="L43" class="LineNr"> 43 </span>  <a href='gap-buffer.mu.html#L65'>emit-stack-from-top</a> right, out
 <span id="L44" class="LineNr"> 44 </span><span class="Delimiter">}</span>
 <span id="L45" class="LineNr"> 45 </span>
 <span id="L46" class="LineNr"> 46 </span><span class="muComment"># dump stack from bottom to top</span>
-<span id="L47" class="LineNr"> 47 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L47'>emit-stack-from-bottom</a></span> _self: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>), out: (addr stream byte) <span class="Delimiter">{</span>
-<span id="L48" class="LineNr"> 48 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> copy _self
+<span id="L47" class="LineNr"> 47 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L47'>emit-stack-from-bottom</a></span> _self: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>), out: (addr stream byte) <span class="Delimiter">{</span>
+<span id="L48" class="LineNr"> 48 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L49" class="LineNr"> 49 </span>  <span class="PreProc">var</span> data-ah/<span class="muRegEdi">edi</span>: (addr handle array code-point-utf8) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, data
 <span id="L50" class="LineNr"> 50 </span>  <span class="PreProc">var</span> _data/eax: (addr array code-point-utf8) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L258'>lookup</a> *data-ah
 <span id="L51" class="LineNr"> 51 </span>  <span class="PreProc">var</span> data/<span class="muRegEdi">edi</span>: (addr array code-point-utf8) <span class="Special">&lt;-</span> copy _data
@@ -125,8 +125,8 @@ if ('onhashchange' in window) {
 <span id="L62" class="LineNr"> 62 </span><span class="Delimiter">}</span>
 <span id="L63" class="LineNr"> 63 </span>
 <span id="L64" class="LineNr"> 64 </span><span class="muComment"># dump stack from top to bottom</span>
-<span id="L65" class="LineNr"> 65 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L65'>emit-stack-from-top</a></span> _self: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>), out: (addr stream byte) <span class="Delimiter">{</span>
-<span id="L66" class="LineNr"> 66 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> copy _self
+<span id="L65" class="LineNr"> 65 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L65'>emit-stack-from-top</a></span> _self: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>), out: (addr stream byte) <span class="Delimiter">{</span>
+<span id="L66" class="LineNr"> 66 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L67" class="LineNr"> 67 </span>  <span class="PreProc">var</span> data-ah/<span class="muRegEdi">edi</span>: (addr handle array code-point-utf8) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, data
 <span id="L68" class="LineNr"> 68 </span>  <span class="PreProc">var</span> _data/eax: (addr array code-point-utf8) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L258'>lookup</a> *data-ah
 <span id="L69" class="LineNr"> 69 </span>  <span class="PreProc">var</span> data/<span class="muRegEdi">edi</span>: (addr array code-point-utf8) <span class="Special">&lt;-</span> copy _data
@@ -145,18 +145,18 @@ if ('onhashchange' in window) {
 <span id="L82" class="LineNr"> 82 </span>
 <span id="L83" class="LineNr"> 83 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L83'>render-gap-buffer</a></span> <a href='../405screen.mu.html#L9'>screen</a>: (addr <a href='../405screen.mu.html#L9'>screen</a>), _gap: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Delimiter">{</span>
 <span id="L84" class="LineNr"> 84 </span>  <span class="PreProc">var</span> gap/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _gap
-<span id="L85" class="LineNr"> 85 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, left
+<span id="L85" class="LineNr"> 85 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, left
 <span id="L86" class="LineNr"> 86 </span>  <a href='grapheme-stack.mu.html#L78'>render-stack-from-bottom</a> left, <a href='../405screen.mu.html#L9'>screen</a>
-<span id="L87" class="LineNr"> 87 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, right
+<span id="L87" class="LineNr"> 87 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, right
 <span id="L88" class="LineNr"> 88 </span>  <a href='grapheme-stack.mu.html#L97'>render-stack-from-top</a> right, <a href='../405screen.mu.html#L9'>screen</a>
 <span id="L89" class="LineNr"> 89 </span><span class="Delimiter">}</span>
 <span id="L90" class="LineNr"> 90 </span>
 <span id="L91" class="LineNr"> 91 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L91'>gap-buffer-length</a></span> _gap: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: int <span class="Delimiter">{</span>
 <span id="L92" class="LineNr"> 92 </span>  <span class="PreProc">var</span> gap/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _gap
-<span id="L93" class="LineNr"> 93 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, left
+<span id="L93" class="LineNr"> 93 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, left
 <span id="L94" class="LineNr"> 94 </span>  <span class="PreProc">var</span> tmp/eax: (addr int) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> left, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L95" class="LineNr"> 95 </span>  <span class="PreProc">var</span> left-length/<span class="muRegEcx">ecx</span>: int <span class="Special">&lt;-</span> copy *tmp
-<span id="L96" class="LineNr"> 96 </span>  <span class="PreProc">var</span> right/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, right
+<span id="L96" class="LineNr"> 96 </span>  <span class="PreProc">var</span> right/<span class="muRegEsi">esi</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> gap, right
 <span id="L97" class="LineNr"> 97 </span>  tmp <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> right, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L98" class="LineNr"> 98 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: int <span class="Special">&lt;-</span> copy *tmp
 <span id="L99" class="LineNr"> 99 </span>  <a href='data.mu.html#L82'>result</a> <span class="Special">&lt;-</span> add left-length
@@ -165,8 +165,8 @@ if ('onhashchange' in window) {
 <span id="L102" class="LineNr">102 </span>
 <span id="L103" class="LineNr">103 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L103'>add-code-point-utf8-at-gap</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>), g: code-point-utf8 <span class="Delimiter">{</span>
 <span id="L104" class="LineNr">104 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L105" class="LineNr">105 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L106" class="LineNr">106 </span>  <a href='grapheme-stack.mu.html#L31'>push-code-point-utf8-stack</a> left, g
+<span id="L105" class="LineNr">105 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L106" class="LineNr">106 </span>  <a href='grapheme-stack.mu.html#L31'>push-grapheme-stack</a> left, g
 <span id="L107" class="LineNr">107 </span><span class="Delimiter">}</span>
 <span id="L108" class="LineNr">108 </span>
 <span id="L109" class="LineNr">109 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L109'>gap-to-start</a></span> self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Delimiter">{</span>
@@ -187,28 +187,28 @@ if ('onhashchange' in window) {
 <span id="L124" class="LineNr">124 </span>
 <span id="L125" class="LineNr">125 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L125'>gap-at-start?</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: boolean <span class="Delimiter">{</span>
 <span id="L126" class="LineNr">126 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L127" class="LineNr">127 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L128" class="LineNr">128 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L20'>code-point-utf8-stack-empty?</a> left
+<span id="L127" class="LineNr">127 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L128" class="LineNr">128 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L20'>grapheme-stack-empty?</a> left
 <span id="L129" class="LineNr">129 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L130" class="LineNr">130 </span><span class="Delimiter">}</span>
 <span id="L131" class="LineNr">131 </span>
 <span id="L132" class="LineNr">132 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L132'>gap-at-end?</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: boolean <span class="Delimiter">{</span>
 <span id="L133" class="LineNr">133 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L134" class="LineNr">134 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L135" class="LineNr">135 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L20'>code-point-utf8-stack-empty?</a> right
+<span id="L134" class="LineNr">134 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L135" class="LineNr">135 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L20'>grapheme-stack-empty?</a> right
 <span id="L136" class="LineNr">136 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L137" class="LineNr">137 </span><span class="Delimiter">}</span>
 <span id="L138" class="LineNr">138 </span>
 <span id="L139" class="LineNr">139 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L139'>gap-right</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: code-point-utf8 <span class="Delimiter">{</span>
 <span id="L140" class="LineNr">140 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L141" class="LineNr">141 </span>  <span class="PreProc">var</span> g/eax: code-point-utf8 <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
-<span id="L142" class="LineNr">142 </span>  <span class="PreProc">var</span> right/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L143" class="LineNr">143 </span>  g <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-code-point-utf8-stack</a> right
+<span id="L142" class="LineNr">142 </span>  <span class="PreProc">var</span> right/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L143" class="LineNr">143 </span>  g <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-grapheme-stack</a> right
 <span id="L144" class="LineNr">144 </span>  compare g, <span class="Constant">-1</span>
 <span id="L145" class="LineNr">145 </span>  <span class="Delimiter">{</span>
 <span id="L146" class="LineNr">146 </span>    <span class="PreProc">break-if-=</span>
-<span id="L147" class="LineNr">147 </span>    <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L148" class="LineNr">148 </span>    <a href='grapheme-stack.mu.html#L31'>push-code-point-utf8-stack</a> left, g
+<span id="L147" class="LineNr">147 </span>    <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L148" class="LineNr">148 </span>    <a href='grapheme-stack.mu.html#L31'>push-grapheme-stack</a> left, g
 <span id="L149" class="LineNr">149 </span>  <span class="Delimiter">}</span>
 <span id="L150" class="LineNr">150 </span>  <span class="PreProc">return</span> g
 <span id="L151" class="LineNr">151 </span><span class="Delimiter">}</span>
@@ -217,21 +217,21 @@ if ('onhashchange' in window) {
 <span id="L154" class="LineNr">154 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L155" class="LineNr">155 </span>  <span class="PreProc">var</span> g/eax: code-point-utf8 <span class="Special">&lt;-</span> copy <span class="Constant">0</span>
 <span id="L156" class="LineNr">156 </span>  <span class="Delimiter">{</span>
-<span id="L157" class="LineNr">157 </span>    <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L158" class="LineNr">158 </span>    g <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-code-point-utf8-stack</a> left
+<span id="L157" class="LineNr">157 </span>    <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L158" class="LineNr">158 </span>    g <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-grapheme-stack</a> left
 <span id="L159" class="LineNr">159 </span>  <span class="Delimiter">}</span>
 <span id="L160" class="LineNr">160 </span>  compare g, <span class="Constant">-1</span>
 <span id="L161" class="LineNr">161 </span>  <span class="Delimiter">{</span>
 <span id="L162" class="LineNr">162 </span>    <span class="PreProc">break-if-=</span>
-<span id="L163" class="LineNr">163 </span>    <span class="PreProc">var</span> right/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L164" class="LineNr">164 </span>    <a href='grapheme-stack.mu.html#L31'>push-code-point-utf8-stack</a> right, g
+<span id="L163" class="LineNr">163 </span>    <span class="PreProc">var</span> right/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L164" class="LineNr">164 </span>    <a href='grapheme-stack.mu.html#L31'>push-grapheme-stack</a> right, g
 <span id="L165" class="LineNr">165 </span>  <span class="Delimiter">}</span>
 <span id="L166" class="LineNr">166 </span>  <span class="PreProc">return</span> g
 <span id="L167" class="LineNr">167 </span><span class="Delimiter">}</span>
 <span id="L168" class="LineNr">168 </span>
 <span id="L169" class="LineNr">169 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L169'>gap-index</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: int <span class="Delimiter">{</span>
 <span id="L170" class="LineNr">170 </span>  <span class="PreProc">var</span> self/eax: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L171" class="LineNr">171 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L171" class="LineNr">171 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
 <span id="L172" class="LineNr">172 </span>  <span class="PreProc">var</span> top-addr/eax: (addr int) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> left, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L173" class="LineNr">173 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: int <span class="Special">&lt;-</span> copy *top-addr
 <span id="L174" class="LineNr">174 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
@@ -240,7 +240,7 @@ if ('onhashchange' in window) {
 <span id="L177" class="LineNr">177 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L177'>first-code-point-utf8-in-gap-buffer</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: code-point-utf8 <span class="Delimiter">{</span>
 <span id="L178" class="LineNr">178 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L179" class="LineNr">179 </span>  <span class="muComment"># try to read from left</span>
-<span id="L180" class="LineNr">180 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L180" class="LineNr">180 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
 <span id="L181" class="LineNr">181 </span>  <span class="PreProc">var</span> top-addr/<span class="muRegEcx">ecx</span>: (addr int) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> left, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L182" class="LineNr">182 </span>  compare *top-addr, <span class="Constant">0</span>
 <span id="L183" class="LineNr">183 </span>  <span class="Delimiter">{</span>
@@ -251,7 +251,7 @@ if ('onhashchange' in window) {
 <span id="L188" class="LineNr">188 </span>    <span class="PreProc">return</span> *result-addr
 <span id="L189" class="LineNr">189 </span>  <span class="Delimiter">}</span>
 <span id="L190" class="LineNr">190 </span>  <span class="muComment"># try to read from right</span>
-<span id="L191" class="LineNr">191 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L191" class="LineNr">191 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
 <span id="L192" class="LineNr">192 </span>  top-addr <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> right, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L193" class="LineNr">193 </span>  compare *top-addr, <span class="Constant">0</span>
 <span id="L194" class="LineNr">194 </span>  <span class="Delimiter">{</span>
@@ -270,13 +270,13 @@ if ('onhashchange' in window) {
 <span id="L207" class="LineNr">207 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L207'>code-point-utf8-before-cursor-in-gap-buffer</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: code-point-utf8 <span class="Delimiter">{</span>
 <span id="L208" class="LineNr">208 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
 <span id="L209" class="LineNr">209 </span>  <span class="muComment"># try to read from left</span>
-<span id="L210" class="LineNr">210 </span>  <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L210" class="LineNr">210 </span>  <span class="PreProc">var</span> left/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
 <span id="L211" class="LineNr">211 </span>  <span class="PreProc">var</span> top-addr/<span class="muRegEdx">edx</span>: (addr int) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> left, <a href='../203stack.subx.html#L338'>top</a>
 <span id="L212" class="LineNr">212 </span>  compare *top-addr, <span class="Constant">0</span>
 <span id="L213" class="LineNr">213 </span>  <span class="Delimiter">{</span>
 <span id="L214" class="LineNr">214 </span>    <span class="PreProc">break-if-&lt;=</span>
-<span id="L215" class="LineNr">215 </span>    <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-code-point-utf8-stack</a> left
-<span id="L216" class="LineNr">216 </span>    <a href='grapheme-stack.mu.html#L31'>push-code-point-utf8-stack</a> left, <a href='data.mu.html#L82'>result</a>
+<span id="L215" class="LineNr">215 </span>    <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-grapheme-stack</a> left
+<span id="L216" class="LineNr">216 </span>    <a href='grapheme-stack.mu.html#L31'>push-grapheme-stack</a> left, <a href='data.mu.html#L82'>result</a>
 <span id="L217" class="LineNr">217 </span>    <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L218" class="LineNr">218 </span>  <span class="Delimiter">}</span>
 <span id="L219" class="LineNr">219 </span>  <span class="muComment"># give up</span>
@@ -285,14 +285,14 @@ if ('onhashchange' in window) {
 <span id="L222" class="LineNr">222 </span>
 <span id="L223" class="LineNr">223 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L223'>delete-before-gap</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Delimiter">{</span>
 <span id="L224" class="LineNr">224 </span>  <span class="PreProc">var</span> self/eax: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L225" class="LineNr">225 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L226" class="LineNr">226 </span>  <span class="PreProc">var</span> dummy/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-code-point-utf8-stack</a> left
+<span id="L225" class="LineNr">225 </span>  <span class="PreProc">var</span> left/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L226" class="LineNr">226 </span>  <span class="PreProc">var</span> dummy/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-grapheme-stack</a> left
 <span id="L227" class="LineNr">227 </span><span class="Delimiter">}</span>
 <span id="L228" class="LineNr">228 </span>
 <span id="L229" class="LineNr">229 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L229'>pop-after-gap</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: code-point-utf8 <span class="Delimiter">{</span>
 <span id="L230" class="LineNr">230 </span>  <span class="PreProc">var</span> self/eax: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L231" class="LineNr">231 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L232" class="LineNr">232 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-code-point-utf8-stack</a> right
+<span id="L231" class="LineNr">231 </span>  <span class="PreProc">var</span> right/eax: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L232" class="LineNr">232 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: code-point-utf8 <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L43'>pop-grapheme-stack</a> right
 <span id="L233" class="LineNr">233 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L234" class="LineNr">234 </span><span class="Delimiter">}</span>
 <span id="L235" class="LineNr">235 </span>
@@ -305,7 +305,7 @@ if ('onhashchange' in window) {
 <span id="L242" class="LineNr">242 </span>  <span class="PreProc">var</span> expected-stream/<span class="muRegEcx">ecx</span>: (addr stream byte) <span class="Special">&lt;-</span> address stream-storage
 <span id="L243" class="LineNr">243 </span>  <a href='../108write.subx.html#L24'>write</a> expected-stream, s
 <span id="L244" class="LineNr">244 </span>  <span class="muComment"># compare left</span>
-<span id="L245" class="LineNr">245 </span>  <span class="PreProc">var</span> left/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L245" class="LineNr">245 </span>  <span class="PreProc">var</span> left/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
 <span id="L246" class="LineNr">246 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L117'>prefix-match?</a> left, expected-stream
 <span id="L247" class="LineNr">247 </span>  compare <a href='data.mu.html#L82'>result</a>, <span class="Constant">0</span>/false
 <span id="L248" class="LineNr">248 </span>  <span class="Delimiter">{</span>
@@ -313,7 +313,7 @@ if ('onhashchange' in window) {
 <span id="L250" class="LineNr">250 </span>    <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L251" class="LineNr">251 </span>  <span class="Delimiter">}</span>
 <span id="L252" class="LineNr">252 </span>  <span class="muComment"># compare right</span>
-<span id="L253" class="LineNr">253 </span>  <span class="PreProc">var</span> right/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
+<span id="L253" class="LineNr">253 </span>  <span class="PreProc">var</span> right/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
 <span id="L254" class="LineNr">254 </span>  <a href='data.mu.html#L82'>result</a> <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L145'>suffix-match?</a> right, expected-stream
 <span id="L255" class="LineNr">255 </span>  compare <a href='data.mu.html#L82'>result</a>, <span class="Constant">0</span>/false
 <span id="L256" class="LineNr">256 </span>  <span class="Delimiter">{</span>
@@ -382,25 +382,25 @@ if ('onhashchange' in window) {
 <span id="L319" class="LineNr">319 </span>  <span class="PreProc">var</span> dest-ah/eax: (addr handle <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _dest-ah
 <span id="L320" class="LineNr">320 </span>  <span class="PreProc">var</span> _dest-a/eax: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> <a href='../120allocate.subx.html#L258'>lookup</a> *dest-ah
 <span id="L321" class="LineNr">321 </span>  <span class="PreProc">var</span> dest-a/<span class="muRegEdi">edi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _dest-a
-<span id="L322" class="LineNr">322 </span>  <span class="muComment"># copy left code-point-utf8-stack</span>
-<span id="L323" class="LineNr">323 </span>  <span class="PreProc">var</span> src/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> src-a, left
-<span id="L324" class="LineNr">324 </span>  <span class="PreProc">var</span> dest/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> dest-a, left
-<span id="L325" class="LineNr">325 </span>  <a href='grapheme-stack.mu.html#L59'>copy-code-point-utf8-stack</a> src, dest
-<span id="L326" class="LineNr">326 </span>  <span class="muComment"># copy right code-point-utf8-stack</span>
+<span id="L322" class="LineNr">322 </span>  <span class="muComment"># copy left grapheme-stack</span>
+<span id="L323" class="LineNr">323 </span>  <span class="PreProc">var</span> src/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> src-a, left
+<span id="L324" class="LineNr">324 </span>  <span class="PreProc">var</span> dest/<span class="muRegEdx">edx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> dest-a, left
+<span id="L325" class="LineNr">325 </span>  <a href='grapheme-stack.mu.html#L59'>copy-grapheme-stack</a> src, dest
+<span id="L326" class="LineNr">326 </span>  <span class="muComment"># copy right grapheme-stack</span>
 <span id="L327" class="LineNr">327 </span>  src <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> src-a, right
 <span id="L328" class="LineNr">328 </span>  dest <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> dest-a, right
-<span id="L329" class="LineNr">329 </span>  <a href='grapheme-stack.mu.html#L59'>copy-code-point-utf8-stack</a> src, dest
+<span id="L329" class="LineNr">329 </span>  <a href='grapheme-stack.mu.html#L59'>copy-grapheme-stack</a> src, dest
 <span id="L330" class="LineNr">330 </span><span class="Delimiter">}</span>
 <span id="L331" class="LineNr">331 </span>
 <span id="L332" class="LineNr">332 </span><span class="PreProc">fn</span> <span class="muFunction"><a href='gap-buffer.mu.html#L332'>gap-buffer-is-decimal-integer?</a></span> _self: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>)<span class="PreProc"> -&gt; </span>_/eax: boolean <span class="Delimiter">{</span>
 <span id="L333" class="LineNr">333 </span>  <span class="PreProc">var</span> self/<span class="muRegEsi">esi</span>: (addr <a href='gap-buffer.mu.html#L1'>gap-buffer</a>) <span class="Special">&lt;-</span> copy _self
-<span id="L334" class="LineNr">334 </span>  <span class="PreProc">var</span> curr/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>code-point-utf8-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
-<span id="L335" class="LineNr">335 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L172'>code-point-utf8-stack-is-decimal-integer?</a> curr
+<span id="L334" class="LineNr">334 </span>  <span class="PreProc">var</span> curr/<span class="muRegEcx">ecx</span>: (addr <a href='grapheme-stack.mu.html#L1'>grapheme-stack</a>) <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, left
+<span id="L335" class="LineNr">335 </span>  <span class="PreProc">var</span> <a href='data.mu.html#L82'>result</a>/eax: boolean <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L172'>grapheme-stack-is-decimal-integer?</a> curr
 <span id="L336" class="LineNr">336 </span>  <span class="Delimiter">{</span>
 <span id="L337" class="LineNr">337 </span>    compare <a href='data.mu.html#L82'>result</a>, <span class="Constant">0</span>/false
 <span id="L338" class="LineNr">338 </span>    <span class="PreProc">break-if-=</span>
 <span id="L339" class="LineNr">339 </span>    curr <span class="Special">&lt;-</span> <a href='../131table.subx.html#L26'>get</a> self, right
-<span id="L340" class="LineNr">340 </span>    <a href='data.mu.html#L82'>result</a> <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L172'>code-point-utf8-stack-is-decimal-integer?</a> curr
+<span id="L340" class="LineNr">340 </span>    <a href='data.mu.html#L82'>result</a> <span class="Special">&lt;-</span> <a href='grapheme-stack.mu.html#L172'>grapheme-stack-is-decimal-integer?</a> curr
 <span id="L341" class="LineNr">341 </span>  <span class="Delimiter">}</span>
 <span id="L342" class="LineNr">342 </span>  <span class="PreProc">return</span> <a href='data.mu.html#L82'>result</a>
 <span id="L343" class="LineNr">343 </span><span class="Delimiter">}</span>