about summary refs log tree commit diff stats
path: root/buffered-stdin.mu
diff options
context:
space:
mode:
Diffstat (limited to 'buffered-stdin.mu')
-rw-r--r--buffered-stdin.mu6
1 files changed, 3 insertions, 3 deletions
diff --git a/buffered-stdin.mu b/buffered-stdin.mu
index a0e39154..3f4030b9 100644
--- a/buffered-stdin.mu
+++ b/buffered-stdin.mu
@@ -2,8 +2,8 @@
 ; dies if you wait a while, because so far we never free memory
 (function main [
   (default-space:space-address <- new space:literal 30:literal)
-  (cursor-mode)
-  (clear-screen)
+  (cursor-mode) ;? 1
+  (clear-screen) ;? 1
   ; hook up stdin
   (stdin:channel-address <- init-channel 1:literal)
   (fork-helper send-keys-to-stdin:fn nil:literal/globals nil:literal/limit nil:literal/keyboard stdin:channel-address)
@@ -15,7 +15,7 @@
     (s:string-address <- new "? ")
     (print-string nil:literal/terminal s:string-address)
     { begin
-      (x:tagged-value stdin:channel-address/deref <- read buffered-stdin:channel-address)
+      (x:tagged-value buffered-stdin:channel-address/deref <- read buffered-stdin:channel-address)
       (c:character <- maybe-coerce x:tagged-value character:literal)
 ;?       (print-primitive-to-host (("AAA " literal))) ;? 1
 ;?       (print-primitive-to-host c:character) ;? 1