X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=classes.lisp;h=0a866ee0ca4632afc8032a29a838bdfd32915cce;hb=ca40a62181bd56c684bd71d8283e90191a71fe23;hp=fd31e48af87613b494632bf4c7423ad277ce6a7b;hpb=c695945cbb26d9c98afeab52c2084fe548e8f9b0;p=umlisp.git diff --git a/classes.lisp b/classes.lisp index fd31e48..0a866ee 100644 --- a/classes.lisp +++ b/classes.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: classes.lisp,v 1.7 2002/10/16 17:37:18 kevin Exp $ +;;;; $Id: classes.lisp,v 1.8 2002/10/18 07:28:57 kevin Exp $ ;;;; ;;;; This file, part of UMLisp, is ;;;; Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D. @@ -554,10 +554,14 @@ (defludisp-ml-class disp-term #'find-uterm-lui) (defludisp-ml-class disp-str #'find-ustr-sui) -#+cmu -(dolist (c '(urank udef usat uso ucxt ustr ulo uterm usty urel ucoc uatx ucon uxw uxnw uxns lexterm labr lagr lcmp lmod lnom lprn lprp lspl ltrm ltyp lwd sdef sstr sstre1 sstre2 )) - (let ((cl (pcl:find-class c))) - (pcl:finalize-inheritance cl))) +#+(or scl cmu) +(dolist (c '(urank udef usat uso ucxt ustr ulo uterm usty urel ucoc uatx ucon uxw uxnw uxns lexterm labr lagr lcmp lmod lnom lprn lprp lspl ltrm ltyp lwd sdef sstr sstre1 sstre2 usrl)) + #+cmu + (let ((cl (pcl:find-class c))) + (pcl:finalize-inheritance cl)) + #+scl + (let ((cl (find-class c))) + (clos:finalize-inheritance cl)))