Skip to content

Commit d27cb70

Browse files
committed
adjust for sbcl change in logical host registry type
1 parent ec7080d commit d27cb70

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pathnames.lisp

+8-2
Original file line numberDiff line numberDiff line change
@@ -215,8 +215,14 @@
215215

216216
#+sbcl
217217
(defun logical-hosts ()
218-
(loop for host being each hash-key of SB-IMPL::*LOGICAL-HOSTS*
219-
collect host))
218+
(etypecase SB-IMPL::*LOGICAL-HOSTS*
219+
(hash-table
220+
(loop for host being each hash-key of SB-IMPL::*LOGICAL-HOSTS*
221+
collect host))
222+
(vector
223+
(loop for host across SB-IMPL::*LOGICAL-HOSTS*
224+
collect host))))
225+
220226

221227
#-(or allegro ccl clisp lispworks sbcl ecl cmu)
222228
(defun logical-hosts ()

0 commit comments

Comments
 (0)