aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/combinator.lisp3
-rw-r--r--src/data.lisp2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/combinator.lisp b/src/combinator.lisp
index fdb56e9..4814f6f 100644
--- a/src/combinator.lisp
+++ b/src/combinator.lisp
@@ -149,8 +149,7 @@ apply the elements of REQUIREMENTS in reverse order."
(return-value :no-change)
;; Remove any null propapps because we don't want to print anything
;; for those, and applying them will do nothing.
- (propapps
- (remove-if #'null (if unapply (reverse propapps) propapps))))
+ (propapps (remove nil (if unapply (reverse propapps) propapps))))
(labels ((propapp-apply (propapp)
(if unapply (propappunapply propapp) (propappapply propapp)))
(announce-propapp-apply (propapp)
diff --git a/src/data.lisp b/src/data.lisp
index c7f4094..cbcc138 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -407,7 +407,7 @@ Note that since prerequisite data sources are queried only in the root Lisp,
but items of prerequisite data are never uploaded to the root Lisp, there is
no risk of clashes between fresly generated files and cached copies of files."
(let ((pn (apply #'data-pathname (get-local-data-cache-dir)
- (delete-if #'null (list iden1 iden2 version)))))
+ (delete nil (list iden1 iden2 version)))))
(ensure-directories-exist
(if version pn (ensure-directory-pathname pn)))))