Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
Carl Shapiro
cmucl
Commits
c88db005
Commit
c88db005
authored
20 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Fix PCL call-method-list problem reported by Ole Rohne on cmucl-imp.
Patch from Ole, very slightly modified.
parent
8b703e12
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
pcl/combin.lisp
+8
-8
8 additions, 8 deletions
pcl/combin.lisp
with
8 additions
and
8 deletions
pcl/combin.lisp
+
8
−
8
View file @
c88db005
...
...
@@ -25,7 +25,7 @@
;;; *************************************************************************
(
file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/combin.lisp,v 1.2
1
200
3/11/05 17:01:18 gerd
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/combin.lisp,v 1.2
2
200
4/03/29 23:39:38 rtoy
Exp $"
)
(
in-package
"PCL"
)
...
...
@@ -513,9 +513,12 @@
;;;
(
defun
memf-test-converter
(
form
gf
method-alist-p
wrappers-p
)
(
flet
((
method-key
(
method
)
(
if
(
inlinable-method-p
method
)
(
method-function-name
method
)
'.fast-call-method.
)))
(
cond
((
inlinable-method-p
method
)
(
method-function-name
method
))
((
eq
(
get-method-call-type
gf
form
method-alist-p
wrappers-p
)
'fast-method-call
)
'.fast-call-method.
)
(
t
.
call-method.
))))
(
case
(
car-safe
form
)
;;
(
call-method
...
...
@@ -525,10 +528,7 @@
'.call-method.
))
;;
(
call-method-list
(
if
(
eq
(
get-method-list-call-type
gf
form
method-alist-p
wrappers-p
)
'fast-method-call
)
(
mapcar
#'
method-key
(
call-method-list-methods
form
))
'.call-method-list.
))
(
mapcar
#'
method-key
(
call-method-list-methods
form
)))
;;
(
check-applicable-keywords
'check-applicable-keywords
)
...
...
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