aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <cbeok@protonmail.com>2020-07-14 10:44:45 -0500
committerColin Okay <cbeok@protonmail.com>2020-07-14 10:44:45 -0500
commit40b8619e8ece8905d3954f1892940f43ec3e7163 (patch)
tree1b78378dde6d76bd423d2d1713974fcad71d250d
parenta6f672f53e924811ead5970815ef6b845c944607 (diff)
yeesh
-rw-r--r--lambda-tools.lisp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lambda-tools.lisp b/lambda-tools.lisp
index 9675c0a..ef999f1 100644
--- a/lambda-tools.lisp
+++ b/lambda-tools.lisp
@@ -16,7 +16,7 @@ PREDICATES have side effects, they will be executed only if each of
the preceding predicates in the list returned NIL."
(labels ((disj (x preds)
(if (null preds) nil
- (or (function pred x)
+ (or (funcall (car preds) x)
(disj x (cdr preds))))))
(lambda (x) (disj x predicates))))