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
199dc8ba
Commit
199dc8ba
authored
20 years ago
by
rtoy
Browse files
Options
Downloads
Patches
Plain Diff
Fix for make-instance bug reported by Axel Schairer on cmucl-help,
2004-08-05. (Taken from identical fix in sbcl.)
parent
2ec04f32
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/ctor.lisp
+14
-3
14 additions, 3 deletions
pcl/ctor.lisp
with
14 additions
and
3 deletions
pcl/ctor.lisp
+
14
−
3
View file @
199dc8ba
...
...
@@ -46,7 +46,7 @@
;;; is called.
(
file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/ctor.lisp,v 1.1
6
200
3
/0
9
/0
3 10:17:22 gerd
Exp $"
)
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/pcl/ctor.lisp,v 1.1
7
200
4
/0
8
/0
6 17:21:54 rtoy
Exp $"
)
(
in-package
"PCL"
)
...
...
@@ -54,6 +54,15 @@
;;; Utilities *******
;;; ******************
(
defun
quote-plist-keys
(
plist
)
(
loop
for
(
key
.
more
)
on
plist
by
#'
cddr
if
(
null
more
)
do
(
error
"Not a property list: ~S"
plist
)
else
collect
`
(
quote
,
key
)
and
collect
(
car
more
)))
(
defun
plist-keys
(
plist
&key
test
)
(
loop
for
(
key
.
more
)
on
plist
by
#'
cddr
if
(
null
more
)
do
...
...
@@ -402,9 +411,11 @@
collect
`
(
funcall
(
truly-the
function
,
fn
)
,
args
()))))
(
values
`
(
let
(
,@
(
when
(
or
ii-before
ii-after
)
`
((
.
ii-args.
(
list
.
instance.
,@
initargs
))))
`
((
.
ii-args.
(
list
.
instance.
,@
(
quote-plist-keys
initargs
)))))
,@
(
when
(
or
si-before
si-after
)
`
((
.
si-args.
(
list
.
instance.
t
,@
initargs
)))))
`
((
.
si-args.
(
list
.
instance.
t
,@
(
quote-plist-keys
initargs
))))))
,@
(
method-calls
ii-before
'.ii-args.
)
,@
(
method-calls
si-before
'.si-args.
)
,
slot-inits
...
...
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