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
c6ac5a48
Commit
c6ac5a48
authored
30 years ago
by
ram
Browse files
Options
Downloads
Patches
Plain Diff
Fixed way broken INSPECT-CLOS-PANE according to patch from Marco Antoniotti.
parent
f48a9558
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
interface/inspect.lisp
+18
-13
18 additions, 13 deletions
interface/inspect.lisp
with
18 additions
and
13 deletions
interface/inspect.lisp
+
18
−
13
View file @
c6ac5a48
...
@@ -517,24 +517,29 @@
...
@@ -517,24 +517,29 @@
:right-attachment
:attach-form
:right-attachment
:attach-form
:top-attachment
:attach-form
:top-attachment
:attach-form
:bottom-attachment
:attach-form
))
:bottom-attachment
:attach-form
))
instance-slots
class-slots
other-slots
)
(
instance-slots
())
(
class-slots
())
(
other-slots
()))
(
dolist
(
slotd
slotds
)
(
dolist
(
slotd
slotds
)
(
with-slots
((
slot
pcl::name
)
(
allocation
pcl::allocation
))
(
with-slots
((
slot
pcl::name
)
(
allocation
pcl::allocation
))
slotd
slotd
(
case
allocation
(
case
allocation
(
:instance
(
push
slotd
instance-slots
))
(
:instance
(
push
slotd
instance-slots
))
(
:class
(
push
slotd
class-slots
))
(
:class
(
push
slotd
class-slots
))
(
otherwise
(
push
slotd
other-slots
))))
(
otherwise
(
push
slotd
other-slots
)))))
(
when
instance-slots
(
show-slot-list
object
instance-slots
view
t
(
when
instance-slots
"Slots with Instance allocation:"
))
(
show-slot-list
object
instance-slots
view
t
(
when
class-slots
"Slots with Instance allocation:"
))
(
show-slot-list
object
class-slots
view
t
(
when
class-slots
"Slots with Class allocation:"
))
(
show-slot-list
object
class-slots
view
t
(
when
other-slots
"Slots with Class allocation:"
))
(
show-slot-list
object
other-slots
view
nil
(
when
other-slots
"Slots with Other allocation:"
))))))
(
show-slot-list
object
other-slots
view
nil
"Slots with Other allocation:"
))
(
when
view
(
manage-child
view
)))))
...
...
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