about summary refs log tree commit diff stats
path: root/081print.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-11-27 11:34:27 -0800
committerKartik K. Agaram <vc@akkartik.com>2015-11-27 11:34:27 -0800
commit91610795155d24b730944056695598753b9d214f (patch)
tree2d4782c2f7c8891246afcdea608afcacd9093eee /081print.mu
parentc0f43700384b149d9fa1e089600c01a81c7a851e (diff)
downloadmu-91610795155d24b730944056695598753b9d214f.tar.gz
2477
Diffstat (limited to '081print.mu')
-rw-r--r--081print.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/081print.mu b/081print.mu
index 482d6da8..af49b012 100644
--- a/081print.mu
+++ b/081print.mu
@@ -656,6 +656,6 @@ recipe print-integer screen:address:screen, n:number -> screen:address:screen [
     bg-color <- copy 0/black
   }
   # todo: other bases besides decimal
-  s:address:array:character <- integer-to-decimal-text n
+  s:address:array:character <- to-text n
   screen <- print screen, s, color, bg-color
 ]