summaryrefslogtreecommitdiff
path: root/init.fnl
diff options
context:
space:
mode:
Diffstat (limited to 'init.fnl')
-rw-r--r--init.fnl2
1 files changed, 1 insertions, 1 deletions
diff --git a/init.fnl b/init.fnl
index 567ee4f..1b84cda 100644
--- a/init.fnl
+++ b/init.fnl
@@ -960,7 +960,7 @@ functions also reuse this indexing method, such as sets."
:else
false))
([x y & xs]
- (reduce #(and $1 $2) (eq x y) (mapv #(eq x $) xs)))))
+ (and (eq x y) (apply eq x xs)))))
(set core.eq (with-meta eq {:fnl/docstring "Deep compare values.