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