Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
contextl
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
closer
contextl
Commits
55d0ffca
Commit
55d0ffca
authored
18 years ago
by
Pascal Costanza
Browse files
Options
Downloads
Patches
Plain Diff
In SBCL, ensure-layered-method now can take the :method-class argument again.
darcs-hash:022ad895f7e702dddc5e3ffb1f122abae99b3f96
parent
a922dc0a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cx-layered-function.lisp
+3
-3
3 additions, 3 deletions
cx-layered-function.lisp
with
3 additions
and
3 deletions
cx-layered-function.lisp
+
3
−
3
View file @
55d0ffca
...
@@ -35,7 +35,7 @@
...
@@ -35,7 +35,7 @@
(
layered-function-name
(
layered-function-name
lambda-expression
lambda-expression
&key
&key
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
sbcl
)
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
)
(
method-class
(
method-class
(
generic-function-method-class
(
generic-function-method-class
(
fdefinition
(
get-layered-function-definer-name
layered-function-name
))))
(
fdefinition
(
get-layered-function-definer-name
layered-function-name
))))
...
@@ -51,8 +51,8 @@
...
@@ -51,8 +51,8 @@
(
error
"Incorrect lambda expression: ~S."
lambda-expression
))
(
error
"Incorrect lambda expression: ~S."
lambda-expression
))
(
ensure-method
(
fdefinition
(
get-layered-function-definer-name
layered-function-name
))
(
ensure-method
(
fdefinition
(
get-layered-function-definer-name
layered-function-name
))
`
(
lambda
(
,
layer-arg
,@
args
)
,@
body
)
`
(
lambda
(
,
layer-arg
,@
args
)
,@
body
)
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
sbcl
)
:method-class
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
)
:method-class
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
sbcl
)
method-class
#-
(
or
allegro
clisp
cmu
ecl
mcl
openmcl
)
method-class
:qualifiers
qualifiers
:qualifiers
qualifiers
:lambda-list
`
(
,
layer-arg
,@
lambda-list
)
:lambda-list
`
(
,
layer-arg
,@
lambda-list
)
:specializers
(
cons
(
prepare-layer
in-layer
)
specializers
)))))
:specializers
(
cons
(
prepare-layer
in-layer
)
specializers
)))))
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