about summary refs log tree commit diff stats
path: root/apps/tile/environment.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-11-04 22:58:13 -0800
committerKartik Agaram <vc@akkartik.com>2020-11-04 22:58:13 -0800
commitcc356b35bf183823f6c78c9b9f3b5eeddfd5614c (patch)
treeb2df3407f441a22a088ede9c48be40a6e2b94682 /apps/tile/environment.mu
parent8767e709c544b64490a40461278ad147485d6f00 (diff)
downloadmu-cc356b35bf183823f6c78c9b9f3b5eeddfd5614c.tar.gz
7180
More bugfixes, now all apps are working.

In the process of fixing the bugs in translating apps/browse, I found a
typo in apps/tile that just happened to accidentally be compiling fine.
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
18' href='#n18'>18 19 20 21 22 23 24 25
26
27
28
29
30
31
32
33