Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
asdf
asdf
Commits
d2971032
Commit
d2971032
authored
Jun 24, 2010
by
Francois-Rene Rideau
Browse files
2.105: actually allow :ignore in compile-file*.
This puts the code in line with rpg's latest documentation.
parent
eca19790
Changes
1
Hide whitespace changes
Inline
Side-by-side
asdf.lisp
View file @
d2971032
...
...
@@ -70,7 +70,7 @@
(
eval-when
(
:load-toplevel
:compile-toplevel
:execute
)
(
let*
((
asdf-version
;; the 1+ helps the version bumping script discriminate
(
subseq
"VERSION:2.10
4
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:2.10
5
"
(
1+
(
length
"VERSION"
))))
(
existing-asdf
(
find-package
:asdf
))
(
vername
'
#:*asdf-version*
)
(
versym
(
and
existing-asdf
...
...
@@ -2972,13 +2972,13 @@ effectively disabling the output translation facility."
(
t
(
setf
status
:success
)))
(
ecase
status
((
:success
:warn
)
((
:success
:warn
:ignore
)
(
delete-file-if-exists
output-file
)
(
when
output-truename
(
rename-file
output-truename
output-file
)
(
setf
output-truename
output-file
)))
(
:error
(
delete-file-if-exists
tmp-fil
e
)
(
delete-file-if-exists
output-truenam
e
)
(
setf
output-truename
nil
)))
(
values
output-truename
warnings-p
failure-p
))))
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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