about summary refs log tree commit diff stats
path: root/081print.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-17 11:20:53 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-17 15:57:37 -0700
commit01ce563dfe3e6cf58337708b9dbb60a8a99fa0f2 (patch)
tree696fce7bb207e77952d10b7358f4ce00faed3874 /081print.mu
parentdd66068298b0a11f2a1f195376cba98e0c8570b5 (diff)
downloadmu-01ce563dfe3e6cf58337708b9dbb60a8a99fa0f2.tar.gz
4262 - literal 'null'
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 df58f831..98ea0f21 100644
--- a/081print.mu
+++ b/081print.mu
@@ -909,6 +909,6 @@ def print screen:&:screen, n:&:_elem -> screen:&:screen [
     break-if bg-color-found?
     bg-color <- copy 0/black
   }
-  n2:num <- copy n
+  n2:num <- deaddress n
   screen <- print screen, n2, color, bg-color
 ]