Ticket #304 (closed defect: fixed)
coops#subclass? can process abort
| Reported by: | kon | Owned by: | felix |
|---|---|---|---|
| Priority: | critical | Milestone: | |
| Component: | extensions | Version: | 4.5.x |
| Keywords: | coops | Cc: |
Description
(use coops)
(subclass? 'not-a-class! <standard-class>) ;=> Bus error (MacOS 10.5)
The `c1' argument is interpreted as a class w/o determining the safety.
Maybe:
((memq c2 (slot-value c1 'class-precedence-list)) #t)
=>
((and (coops-instance? c1) (memq c2 (slot-value c1 'class-precedence-list))) #t)
Change History
Note: See
TracTickets for help on using
tickets.
