diff --git a/hy/core/macros.hy b/hy/core/macros.hy index fcaa59a..bdeb288 100644 --- a/hy/core/macros.hy +++ b/hy/core/macros.hy @@ -152,7 +152,7 @@ (defmacro unless [test &rest body] "Execute `body` when `test` is false" - `(if ~test None (do ~@body))) + `(if-not ~test (do ~@body))) (defmacro yield-from [iterable]