diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-02-15 00:01:51 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-02-15 00:01:51 -0800 |
commit | 6ded65f45f633637de853b4e0b483080050394ca (patch) | |
tree | 055d6b7bc9171e65b57dce97eaa2166bd789ba4f | |
parent | 554777cb2b95e5f56541fc9be0da458c23adedea (diff) | |
download | mu-6ded65f45f633637de853b4e0b483080050394ca.tar.gz |
4969
-rw-r--r-- | subx/apps/pack.subx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subx/apps/pack.subx b/subx/apps/pack.subx index a27d2613..cf0a27d7 100644 --- a/subx/apps/pack.subx +++ b/subx/apps/pack.subx @@ -200,10 +200,10 @@ $convert:end: convert-instruction: # line : (address stream byte), out : (address buffered-file) -> <void> # pseudocode: # word-slice = next-word - # if (*word-slice->start == '#') + # if (slice-starts-with?(word-slice, '#')) # write-stream-buffered(out, line) # return - # if (starts-with(word-slice, '==')) + # if (slice-starts-with?(word-slice, '==')) # write-stream-buffered(out, line) # return # |