diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2021-07-19 19:55:10 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2021-07-19 19:55:10 -0700 |
commit | 7204135203524dc7bcb7df6610e0ac45872f46fd (patch) | |
tree | 0ec9b95ec220ed4cd6fa9808d5821ea3b5806d0f | |
parent | 916d01175360a2559d205a5037b0dad26f598589 (diff) | |
download | mu-7204135203524dc7bcb7df6610e0ac45872f46fd.tar.gz |
.
-rw-r--r-- | shell/environment.mu | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/shell/environment.mu b/shell/environment.mu index ed0b813c..06c667fd 100644 --- a/shell/environment.mu +++ b/shell/environment.mu @@ -268,10 +268,10 @@ fn edit-environment _self: (addr environment), key: grapheme, data-disk: (addr d var name/ecx: (addr stream byte) <- address name-storage emit-gap-buffer partial-global-name, name # compute global index - var index/ecx: int <- find-symbol-in-globals globals, name + var curr-index/ecx: int <- find-symbol-in-globals globals, name # if global not found, set error and return { - compare index, 0 + compare curr-index, 0 break-if->= var go-modal-error-ah/eax: (addr handle array byte) <- get self, go-modal-error copy-array-object "no such global", go-modal-error-ah @@ -285,10 +285,10 @@ fn edit-environment _self: (addr environment), key: grapheme, data-disk: (addr d copy-to *cursor-in-go-modal-a, 0/false # switch focus to global at index #? set-cursor-position 0/screen, 0x20/x 0x20/y -#? draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, index, 7/fg 0/bg - bump-global globals, index -#? var cursor-index/ecx: int <- cursor-global globals -#? draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, cursor-index, 4/fg 0/bg +#? draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, curr-index, 7/fg 0/bg + bump-global globals, curr-index +#? var curr-index2/ecx: int <- cursor-global globals +#? draw-int32-decimal-wrapping-right-then-down-from-cursor-over-full-screen 0/screen, curr-index2, 4/fg 0/bg #? abort "a" var cursor-in-globals-a/ecx: (addr boolean) <- get self, cursor-in-globals? copy-to *cursor-in-globals-a, 1/true @@ -313,11 +313,11 @@ fn edit-environment _self: (addr environment), key: grapheme, data-disk: (addr d var name-storage: (stream byte 0x40) var name/edx: (addr stream byte) <- address name-storage emit-gap-buffer partial-global-name, name - # compute global index - var index/ecx: int <- find-symbol-in-globals globals, name + # compute global curr-index + var curr-index/ecx: int <- find-symbol-in-globals globals, name # if global found, set error and return { - compare index, 0 + compare curr-index, 0 break-if-< var go-modal-error-ah/eax: (addr handle array byte) <- get self, go-modal-error copy-array-object "already exists", go-modal-error-ah |