From: lotha (Lothar Hotz)

Subject: Redefining Classes

Date: 1994-8-23 8:21



Allegro CL 4.2 [SPARC; R1] (4/12/94 10:14)


USER(1): :pa clos
CLOS(2): (defclass c1 () ())
#<STANDARD-CLASS C1>
CLOS(3): (defclass c2 (c1) ())
#<STANDARD-CLASS C2>
;;; Oh, c1 should be under c2
CLOS(4): (defclass c1 (c2) ())

--> Memory allocation without ending, instead of an error message about circular class lists ....

Is there a patch about it?

lothar