Skip to content

Fix SCL package references #224

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions quicklisp/impl-util.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ quicklisp at CL startup."
(ql-lispworks:file-directory-p entry))
(:implementation genera
(let ((path (if (call-next-method)
(scl:send entry :directory-pathname-as-file)
(ql-genera:send entry :directory-pathname-as-file)
entry)))
(getf (cdr (ql-genera:file-properties path)) ':directory))))

Expand Down Expand Up @@ -260,7 +260,7 @@ quicklisp at CL startup."
(let ((entries (ql-genera:directory-list (merge-pathnames *wild-entry* directory))))
(loop for (pathname . properties) in (cdr entries)
if (getf properties ':directory)
collect (scl:send pathname :pathname-as-directory)
collect (ql-genera:send pathname :pathname-as-directory)
else
collect pathname)))
(:implementation mezzano
Expand Down