about summary refs log tree commit diff stats
path: root/061text.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-07-27 22:20:12 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-07-27 22:20:12 -0700
commit814333e288a75af10fc39b8ca8d8eefcb855fb25 (patch)
tree78eb882cdd87437af70f5dabef9227ea41417800 /061text.mu
parentb462361dbedb1ebaa76fdeddacca562e9d86a956 (diff)
downloadmu-814333e288a75af10fc39b8ca8d8eefcb855fb25.tar.gz
3155
Diffstat (limited to '061text.mu')
-rw-r--r--061text.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/061text.mu b/061text.mu
index bd5e8236..1ba93f75 100644
--- a/061text.mu
+++ b/061text.mu
@@ -289,8 +289,8 @@ def append a:address:array:character, b:address:array:character -> result:addres
   local-scope
   load-ingredients
   # handle null addresses
-  reply-unless a, b
-  reply-unless b, a
+  return-unless a, b
+  return-unless b, a
   # result = new character[a.length + b.length]
   a-len:number <- length *a
   b-len:number <- length *b