Skip to content

Commit 02a9bdb

Browse files
authored
Merge pull request quicklisp#201 from yitzchak/fix-clisp
Use string in require for clisp
2 parents 31b3611 + 57ed549 commit 02a9bdb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.lisp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ already exist."
8080

8181
(defun ensure-asdf-loaded ()
8282
"Try several methods to make sure that a sufficiently-new ASDF is
83-
loaded: first try (require 'asdf), then loading the ASDF FASL, then
83+
loaded: first try (require \"asdf\"), then loading the ASDF FASL, then
8484
compiling asdf.lisp to a FASL and then loading it."
8585
(let ((source (qmerge "asdf.lisp")))
8686
(labels ((asdf-symbol (name)
@@ -103,7 +103,7 @@ compiling asdf.lisp to a FASL and then loading it."
103103
(when (version-satisfies *required-asdf-version*)
104104
(return t)))))
105105
(try)
106-
(try (require 'asdf))
106+
(try (require "asdf"))
107107
(let ((fasl (asdf-fasl-pathname)))
108108
(try (load fasl :verbose nil))
109109
(try (load (compile-file source :verbose nil :output-file fasl))))

0 commit comments

Comments
 (0)