Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
8fd3c6dc
Commit
8fd3c6dc
authored
Sep 11, 2016
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
operate.lisp
operate.lisp
+5
-4
No files found.
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