aboutsummaryrefslogtreecommitdiff
path: root/src/data.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2021-02-22 16:06:09 -0700
committerSean Whitton <spwhitton@spwhitton.name>2021-02-22 16:06:09 -0700
commitbcef5b50d8f71b83c657e06bf420122769bca756 (patch)
tree35f9bf5530f0d6328855d4ca21bd6b6c1389fd37 /src/data.lisp
parentbcdeb80ebf6affe4af43e6aed288eebce8ff115b (diff)
downloadconsfigurator-bcef5b50d8f71b83c657e06bf420122769bca756.tar.gz
fix sorting available prerequisite data from *DATA-SOURCES*
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/data.lisp')
-rw-r--r--src/data.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/data.lisp b/src/data.lisp
index 6d853f1..fba0e2b 100644
--- a/src/data.lisp
+++ b/src/data.lisp
@@ -177,7 +177,8 @@ This function is called by property :APPLY and :UNAPPLY subroutines."
when version collect (cons version
(lambda ()
(funcall get iden1 iden2))))
- (compose #'version> #'car))))
+ (lambda (x y)
+ (version> (car x) (car y))))))
;; called by implementations of ESTABLISH-CONNECTION which start up remote
;; Lisp images