File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ already exist."
80
80
81
81
(defun ensure-asdf-loaded ()
82
82
" 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
84
84
compiling asdf.lisp to a FASL and then loading it."
85
85
(let ((source (qmerge " asdf.lisp" )))
86
86
(labels ((asdf-symbol (name)
@@ -103,7 +103,7 @@ compiling asdf.lisp to a FASL and then loading it."
103
103
(when (version-satisfies *required-asdf-version* )
104
104
(return t )))))
105
105
(try)
106
- (try (require ' asdf))
106
+ (try (require " asdf" ))
107
107
(let ((fasl (asdf-fasl-pathname)))
108
108
(try (load fasl :verbose nil ))
109
109
(try (load (compile-file source :verbose nil :output-file fasl))))
You can’t perform that action at this time.
0 commit comments