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
Karsten Poeck
asdf
Commits
08ff0a47
Commit
08ff0a47
authored
7 years ago
by
Francois-Rene Rideau
Browse files
Options
Downloads
Patches
Plain Diff
Disable check against operation initargs on Genera
Steven Nunez found that Genera adds its own magic initargs.
parent
07f42b88
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
operation.lisp
+1
-0
1 addition, 0 deletions
operation.lisp
with
1 addition
and
0 deletions
operation.lisp
+
1
−
0
View file @
08ff0a47
...
@@ -36,6 +36,7 @@ Therefore, all slots of all operations MUST have :allocation :class and no inita
...
@@ -36,6 +36,7 @@ Therefore, all slots of all operations MUST have :allocation :class and no inita
(
print-unreadable-object
(
o
stream
:type
t
:identity
nil
)))
(
print-unreadable-object
(
o
stream
:type
t
:identity
nil
)))
;;; Override previous methods (from 3.1.7 and earlier) and add proper error checking.
;;; Override previous methods (from 3.1.7 and earlier) and add proper error checking.
#-
genera
;; Genera adds its own system initargs, e.g. clos-internals:storage-area 8
(
defmethod
initialize-instance
:after
((
o
operation
)
&rest
initargs
&key
&allow-other-keys
)
(
defmethod
initialize-instance
:after
((
o
operation
)
&rest
initargs
&key
&allow-other-keys
)
(
unless
(
null
initargs
)
(
unless
(
null
initargs
)
(
parameter-error
"~S does not accept initargs"
'operation
))))
(
parameter-error
"~S does not accept initargs"
'operation
))))
...
...
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