Skip to content

Commit 10b61e5

Browse files
authored
Merge pull request #220 from gmpalter/master
Fix #219: Replace references to SCL with QL-GENERA
2 parents e687ab3 + 9a21c42 commit 10b61e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: quicklisp/impl-util.lisp

+2-2
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ quicklisp at CL startup."
202202
(ql-lispworks:file-directory-p entry))
203203
(:implementation genera
204204
(let ((path (if (call-next-method)
205-
(scl:send entry :directory-pathname-as-file)
205+
(ql-genera:send entry :directory-pathname-as-file)
206206
entry)))
207207
(getf (cdr (ql-genera:file-properties path)) ':directory))))
208208

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

0 commit comments

Comments
 (0)