about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-01-22 23:47:24 -0800
committerKartik Agaram <vc@akkartik.com>2020-01-22 23:47:24 -0800
commite4dec37372ddaef7ca7ed61283cea442d7f4de45 (patch)
treefed5678703328750af6e06b52830aca807507a06
parente2d73d037c6aa100c9d04d5c201ca2c9e74c63c0 (diff)
downloadmu-e4dec37372ddaef7ca7ed61283cea442d7f4de45.tar.gz
5916
-rwxr-xr-xapps/mubin81179 -> 81194 bytes
-rw-r--r--apps/mu.subx6
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/mu b/apps/mu
index c407970f..48e9f0cf 100755
--- a/apps/mu
+++ b/apps/mu
Binary files differdiff --git a/apps/mu.subx b/apps/mu.subx
index e5714007..a64a92d2 100644
--- a/apps/mu.subx
+++ b/apps/mu.subx
@@ -2639,7 +2639,7 @@ $parse-mu-block:check-for-block:
         (check-no-tokens-left %ecx)
         # parse new block and append
         (parse-mu-block *(ebp+8) *(ebp+0xc) *(ebp+0x10))  # => eax
-        (append-to-block %edi %eax)
+        (append-to-block Heap %edi %eax)
         e9/jump $parse-mu-block:line-loop/disp32
       }
       # if slice-equal?(word-slice, "}") break
@@ -2659,7 +2659,7 @@ $parse-mu-block:check-for-named-block:
         0f 85/jump-if-!= break/disp32
         #
         (parse-mu-named-block %edx %ecx *(ebp+8) *(ebp+0xc) *(ebp+0x10))  # => eax
-        (append-to-block %edi %eax)
+        (append-to-block Heap %edi %eax)
         e9/jump $parse-mu-block:line-loop/disp32
       }
       # if slice-equal?(word-slice, "var")
@@ -2670,7 +2670,7 @@ $parse-mu-block:check-for-var:
         74/jump-if-= break/disp8
         #
         (parse-mu-var-def %ecx *(ebp+0xc))  # => eax
-        (append-to-block %edi %eax)
+        (append-to-block Heap %edi %eax)
         e9/jump $parse-mu-block:line-loop/disp32
       }
 $parse-mu-block:regular-stmt: