about summary refs log tree commit diff stats
path: root/shell/environment.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-04 19:41:27 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-04 19:41:27 -0700
commiteb6758c61f0eb98a19e72a7113126688fcc984ff (patch)
tree56a8092ad5c41fceac9c49ab26c540525758c1d0 /shell/environment.mu
parent30745be5b57fc8edd6bfde738bf6c670dd6c161d (diff)
downloadmu-eb6758c61f0eb98a19e72a7113126688fcc984ff.tar.gz
.
Diffstat (limited to 'shell/environment.mu')
-rw-r--r--shell/environment.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/environment.mu b/shell/environment.mu
index bd909f22..16c7804a 100644
--- a/shell/environment.mu
+++ b/shell/environment.mu
@@ -88,8 +88,8 @@ fn edit-environment _self: (addr environment), key: byte, data-disk: (addr disk)
   }
   # dispatch the key to either sandbox or globals
   {
-    var cursor-in-globals?/eax: (addr boolean) <- get self, cursor-in-globals?
-    compare *cursor-in-globals?, 0/false
+    var cursor-in-globals-a/eax: (addr boolean) <- get self, cursor-in-globals?
+    compare *cursor-in-globals-a, 0/false
     break-if-=
     edit-globals globals, key, data-disk
     return