about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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
='n109' href='#n109'>109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147