Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
asdf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Moringen
asdf
Commits
cf03b47c
Commit
cf03b47c
authored
15 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
1.661: remove buggy and redundant method perform-with-restarts for compile-op.
Should hopefully fix Bug 545027.
parent
3629f60a
No related branches found
Branches containing commit
Tags
1.661
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
asdf.lisp
+1
-21
1 addition, 21 deletions
asdf.lisp
with
1 addition
and
21 deletions
asdf.lisp
+
1
−
21
View file @
cf03b47c
...
...
@@ -263,7 +263,7 @@
;; This parameter isn't actually user-visible
;; -- please use the exported function ASDF:ASDF-VERSION below.
;; the 1+ hair is to ensure that we don't do an inadvertent find and replace
(
subseq
"VERSION:1.66
0
"
(
1+
(
length
"VERSION"
))))
(
subseq
"VERSION:1.66
1
"
(
1+
(
length
"VERSION"
))))
(
defun
asdf-version
()
"Exported interface to the version of ASDF currently installed. A string.
...
...
@@ -1575,26 +1575,6 @@ recursive calls to traverse.")
(
call-next-method
)
(
setf
state
:success
)))))))
(
defmethod
perform-with-restarts
((
o
compile-op
)
(
c
cl-source-file
))
(
let
((
state
:initial
))
(
loop
:until
(
or
(
eq
state
:success
)
(
eq
state
:failure
))
:do
(
case
state
(
:recompiled
(
setf
state
:failure
)
(
call-next-method
)
(
setf
state
:success
))
(
:failed-compile
(
setf
state
:recompiled
)
(
perform-with-restarts
o
c
))
(
t
(
with-simple-restart
(
try-recompiling
"Try recompiling ~a"
(
component-name
c
))
(
setf
state
:failed-compile
)
(
call-next-method
)
(
setf
state
:success
)))))))
(
defmethod
perform
((
operation
load-op
)
(
c
static-file
))
nil
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment