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
Hugo Ishimaru
asdf
Commits
cfa50ffd
Commit
cfa50ffd
authored
11 years ago
by
Robert P. Goldman
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bug in error signaling.
parent
5e21bb43
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
action.lisp
+7
-2
7 additions, 2 deletions
action.lisp
with
7 additions
and
2 deletions
action.lisp
+
7
−
2
View file @
cfa50ffd
...
...
@@ -222,10 +222,11 @@ OPERATION objects."))
:return
t
:finally
(
return
nil
))
(
error
'operation-definition-error
:format-control
"No dependency propagating scheme specified for operation ~a.~
This is likely because the OPERATION subclass of this object has not been ~
updated for ASDF 3."
obj
)))
:format-arguments
(
list
obj
)))
)
(
defmethod
initialize-instance
:before
((
obj
non-propagating-operation
)
&key
)
(
when
...
...
@@ -235,8 +236,12 @@ updated for ASDF 3."
:return
t
:finally
(
return
nil
))
(
error
'operation-definition-error
:format-control
"Inconsistent class: ~a No class should have both NON-PROPAGATING-OPERATION and a propagating
operation class as superclasses."
(
class-name
(
class-of
obj
)))))
operation class as superclasses."
:format-arguments
(
list
(
class-name
(
class-of
obj
))))))
;;;---------------------------------------------------------------------------
;;; End of OPERATION class checking
...
...
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