CLIM mail archive

[Prev][Next][Index][Thread]

define-application-frame superclasses




In CLIM 0.9.68, CLX 4.4, Lucid 4.0.2.

I basically wanted to build an application frame out of a more generic
application independent frame.  I tried something like:

(define-application-frame generic-frame ()
 ...)

(define-application-frame application-frame (generic-frame)
  ...)

to my suprise, this macro generates a class like:

(defclass application-frame (frame generic-frame)
 ...)

which leads to a unlinearizable class-precedence list, rather than what
i expected:

(defclass application-frame (generic-frame frame)
 ...)

I think this is a bug.  Is it a bug or a feature?

k



0,,


Main Index | Thread Index