aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib.macros.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib.macros.lisp b/lib.macros.lisp
index 70f5917..d182ce0 100644
--- a/lib.macros.lisp
+++ b/lib.macros.lisp
@@ -84,7 +84,7 @@ arguments `LAMBDA-LIST' with body `BODY'."
"Given a sequence of FORMS, return a unary function which applies each form
sequentially"
`(lambda (x)
- (->> x ,@(reverse forms))))
+ (->> x ,@forms)))
(defmacro alist-val (key alist)
"Helper macro for getting the value of KEY in ALIST."