diff options
Diffstat (limited to 'macros/fn.fnl')
| -rw-r--r-- | macros/fn.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macros/fn.fnl b/macros/fn.fnl index 24f909d..8146a0b 100644 --- a/macros/fn.fnl +++ b/macros/fn.fnl @@ -79,7 +79,7 @@ (var prev nil) (each [_ cur (ipairs t)] (if prev - (when (~= (+ prev 1) cur) + (when (not= (+ prev 1) cur) (lua "return false"))) (set prev cur)) prev)) @@ -156,7 +156,7 @@ ,(arity-dispatcher 'len# bodies - (if (~= (next bodies&) nil) + (if (not= (next bodies&) nil) (. bodies& 1)) fname)))) |