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
e08e9bef
Commit
e08e9bef
authored
Jul 04, 2010
by
Francois-Rene Rideau
Browse files
2.109: fix error in error when COMPILE-FILE returns NIL T T.
parent
caf86f63
Changes
1
Hide whitespace changes
Inline
Side-by-side
asdf.lisp
View file @
e08e9bef
...
...
@@ -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
8
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:2.10
9
"
(
1+
(
length
"VERSION"
))))
(
existing-asdf
(
find-package
:asdf
))
(
vername
'
#:*asdf-version*
)
(
versym
(
and
existing-asdf
...
...
@@ -2962,7 +2962,7 @@ effectively disabling the output translation facility."
:defaults
x
))
(
defun
delete-file-if-exists
(
x
)
(
when
(
probe-file
x
)
(
when
(
and
x
(
probe-file
x
)
)
(
delete-file
x
)))
(
defun
compile-file*
(
input-file
&rest
keys
&key
&allow-other-keys
)
...
...
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