From e7b21cc0dfa417ba748732bd898e7d2b764299c5 Mon Sep 17 00:00:00 2001 From: gilch Date: Mon, 19 Mar 2018 22:39:18 +0000 Subject: [PATCH] fix indent --- hy/core/macros.hy | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hy/core/macros.hy b/hy/core/macros.hy index 34956bb..16432dd 100644 --- a/hy/core/macros.hy +++ b/hy/core/macros.hy @@ -150,8 +150,8 @@ the second form, the second result is inserted into the third form, and so on." (setv ret head) (for* [node args] (setv ret (if (isinstance node HyExpression) - `(~(first node) ~ret ~@(rest node)) - `(~node ~ret)))) + `(~(first node) ~ret ~@(rest node)) + `(~node ~ret)))) ret) @@ -175,8 +175,8 @@ the second form, the second result is inserted into the third form, and so on." (setv ret head) (for* [node args] (setv ret (if (isinstance node HyExpression) - `(~@node ~ret) - `(~node ~ret)))) + `(~@node ~ret) + `(~node ~ret)))) ret)