Skip to content

Commit f518162

Browse files
author
Sebastian Carlos
committed
Check for custom init file name on SBCL. For (ql:add-to-init-file)
1 parent d601e0d commit f518162

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

quicklisp/impl-util.lisp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@
7575
(:implementation lispworks
7676
".lispworks")
7777
(:implementation sbcl
78-
".sbclrc")
78+
(or (and (find-package :sb-ext)
79+
(funcall sb-ext:*userinit-pathname-function*))
80+
".sbclrc"))
7981
(:implementation cmucl
8082
".cmucl-init.lisp")
8183
(:implementation scl

0 commit comments

Comments
 (0)