diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-12-01 02:32:57 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-12-01 02:32:57 -0800 |
commit | 0f4c2b55ead3f155bc729990c8d6e46b05ccb119 (patch) | |
tree | 612a634d939885ab732f33fa50bdf7821d76d8ca /lib/std/cmp.myr | |
parent | cf81dd19f0c898fa6036d1f88cbe822eb8a2b4bf (diff) | |
download | mc-0f4c2b55ead3f155bc729990c8d6e46b05ccb119.tar.gz |
Fix plan9 tests
rc wants single quotes in the test file.
Also, disable a spurious print.
Diffstat (limited to 'lib/std/cmp.myr')
-rw-r--r-- | lib/std/cmp.myr | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/std/cmp.myr b/lib/std/cmp.myr index b5e026d..b599166 100644 --- a/lib/std/cmp.myr +++ b/lib/std/cmp.myr @@ -64,7 +64,6 @@ const strcasecmp = {a, b (cb, b) = std.striter(b) ca = toupper(ca) cb = toupper(cb) - std.put("{}, {}\n", ca, cb) if ca < cb -> `Before elif ca > cb |