about summary refs log tree commit diff stats
path: root/084console.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-21 10:19:34 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-21 10:19:34 -0800
commit136412d263cc241bf9dfbe46271547615e3ba03d (patch)
tree7d0e9a7eb900f5e61ef78e669b9459b2d082acd3 /084console.mu
parent3f7eed6c600d6fb10ad6ae279f87541af69af9a2 (diff)
downloadmu-136412d263cc241bf9dfbe46271547615e3ba03d.tar.gz
2468 - overload print-character as just 'print'
Diffstat (limited to '084console.mu')
-rw-r--r--084console.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/084console.mu b/084console.mu
index 3176b82b..68fd5413 100644
--- a/084console.mu
+++ b/084console.mu
@@ -80,7 +80,7 @@ recipe send-keys-to-channel console:address:console, chan:address:channel, scree
     loop-unless found?
     break-if quit?
     assert c, [invalid event, expected text]
-    screen <- print-character screen, c
+    screen <- print screen, c
     chan <- write chan, c
     loop
   }