CLIM mail archive
[Prev][Next][Index][Thread]
clos object wierdness ..
Essentially, I'm doing the following:
(defclass a () ())
(defclass b () ())
(defclass c () ())
(defclass d (a b c) ())
(define-presentation-type d (foo))
Then I have a macro which includes creating a
subclass of d - something like
(defmacro define-sub-d ( ... )
`(progn
(defclass ,name (d) ())
...
))
In MCL (in NO OTHER LISP/CLIM) I get a compiler
warning about "incompatible supertypes" between
"d" and "presentation-type d". Then, when I run
the macro (but not when I just do a simple defclass)
the direct supertypes of "d" get slammed with "standard-object"
(somewhere in the process) so that a call to define-sub-d
results in an "incompatible supertypes" error.
I know this is vague, but I'm having a VERY hard time
isolating the behavior, and I'm wondering if anyone else
has seen anything like this. This is a system I've fully
ported to Allegro, compiled (but haven't tried to run yet)
under Lucid, and (of course) it was developed on a Symbolics
where it hums. So only MCL is giving me this grief.
Any hints about where to look would be appreciated. I'm
still working on isolating a case ...
Follow-Ups:
Main Index |
Thread Index