diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-04 22:58:13 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-04 22:58:13 -0800 |
commit | cc356b35bf183823f6c78c9b9f3b5eeddfd5614c (patch) | |
tree | b2df3407f441a22a088ede9c48be40a6e2b94682 /apps/tile | |
parent | 8767e709c544b64490a40461278ad147485d6f00 (diff) | |
download | mu-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')
-rw-r--r-- | apps/tile/environment.mu | 2 |
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 |