diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-11-03 14:04:35 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-11-03 14:04:35 -0800 |
commit | da791479a0bd7f1d34c0ba06309cc1fb48bbe7a5 (patch) | |
tree | b702c6eb9873f929270814dd29a64b4f3ca56ae8 /apps/tile | |
parent | 85a29a4e4ed68e7ae35321113ff3d7aedb6afc4b (diff) | |
download | mu-da791479a0bd7f1d34c0ba06309cc1fb48bbe7a5.tar.gz |
7165
All tasks of https://github.com/akkartik/mu/issues/45#issuecomment-719990879 should now be complete.
Diffstat (limited to 'apps/tile')
-rw-r--r-- | apps/tile/word.mu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/tile/word.mu b/apps/tile/word.mu index c51c4bf4..64d03ff8 100644 --- a/apps/tile/word.mu +++ b/apps/tile/word.mu @@ -176,7 +176,7 @@ fn cursor-at-start? _self: (addr word) -> _/eax: boolean { return result } -fn cursor-at-end? _self: (addr word) -> result/eax: boolean { +fn cursor-at-end? _self: (addr word) -> _/eax: boolean { var self/esi: (addr word) <- copy _self var data-ah/eax: (addr handle gap-buffer) <- get self, scalar-data var data/eax: (addr gap-buffer) <- lookup *data-ah |