about summary refs log tree commit diff stats
path: root/shell/main.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-04 19:58:20 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-04 19:58:20 -0700
commit81b3f72fb8a0f822723945f5f7afd6c59d384110 (patch)
tree5790967237bf780189b72542739124611bc1233c /shell/main.mu
parenteb6758c61f0eb98a19e72a7113126688fcc984ff (diff)
downloadmu-81b3f72fb8a0f822723945f5f7afd6c59d384110.tar.gz
.
Diffstat (limited to 'shell/main.mu')
-rw-r--r--shell/main.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/shell/main.mu b/shell/main.mu
index 8da0be6c..93b8d08c 100644
--- a/shell/main.mu
+++ b/shell/main.mu
@@ -13,6 +13,7 @@ fn main screen: (addr screen), keyboard: (addr keyboard), data-disk: (addr disk)
       var key/eax: byte <- read-key keyboard
       compare key, 0
       loop-if-=
+      var key/eax: grapheme <- copy key
       edit-environment env, key, data-disk
     }
     loop