From 40b8619e8ece8905d3954f1892940f43ec3e7163 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Tue, 14 Jul 2020 10:44:45 -0500 Subject: yeesh --- lambda-tools.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- cgit v1.2.3