about summary refs log tree commit diff stats
path: root/apps/tile/environment.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile/environment.mu')
-rw-r--r--apps/tile/environment.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/environment.mu b/apps/tile/environment.mu
index 3105ed89..a4b7580f 100644
--- a/apps/tile/environment.mu
+++ b/apps/tile/environment.mu
@@ -814,7 +814,7 @@ fn bound-function? w: (addr word), functions-ah: (addr handle function) -> _/ebx
 }
 
 fn arg-exists? _f-ah: (addr handle function), arg: (addr word) -> _/ebx: boolean {
-  var f-ah/eax: (addr handle function) <- copy *_f-ah
+  var f-ah/eax: (addr handle function) <- copy _f-ah
   var f/eax: (addr function) <- lookup *f-ah
   var args-ah/eax: (addr handle word) <- get f, args
   var result/ebx: boolean <- word-exists? args-ah, arg