Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Eric Timmons
asdf
Commits
8fd3c6dc
Commit
8fd3c6dc
authored
Sep 11, 2016
by
Francois-Rene Rideau
Browse files
Fix typo in
0c95742b
that broke ASDF.
Also, reformat a function and use uiop implicitly.
parent
69738939
Changes
1
Hide whitespace changes
Inline
Side-by-side
operate.lisp
View file @
8fd3c6dc
...
...
@@ -199,7 +199,7 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
(
defmethod
resolve-dependency-combination
(
component
(
combinator
(
eql
:require
))
arguments
)
(
unless
(
and
(
length=n-p
arguments
1
)
(
typep
(
car
argument
)
'
(
or
string
(
and
symbol
(
not
null
)))))
(
typep
(
car
argument
s
)
'
(
or
string
(
and
symbol
(
not
null
)))))
(
error
(
compatfmt
"~@<Bad dependency ~S for ~S. ~S takes one argument, a string or non-null symbol~@:>"
)
(
cons
combinator
arguments
)
component
combinator
))
;; :require must be prepared for some implementations providing modules using ASDF,
...
...
@@ -230,9 +230,10 @@ the implementation's REQUIRE rather than by internal ASDF mechanisms."))
(
handler-bind
((
style-warning
#'
muffle-warning
)
(
missing-component
(
constantly
nil
))
(
uiop:fatal-condition
#'
(
lambda
(
e
)
(
format
*error-output*
(
compatfmt
"~@<ASDF could not load ~(~A~) because ~A.~@:>~%"
)
name
e
))))
(
fatal-condition
#'
(
lambda
(
e
)
(
format
*error-output*
(
compatfmt
"~@<ASDF could not load ~(~A~) because ~A.~@:>~%"
)
name
e
))))
(
let
((
*verbose-out*
(
make-broadcast-stream
)))
(
let
((
system
(
find-system
module
nil
)))
(
when
system
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment