r3103: *** empty log message ***
authorKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 18 Oct 2002 07:31:42 +0000 (07:31 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Fri, 18 Oct 2002 07:31:42 +0000 (07:31 +0000)
classes.lisp
composite.lisp
umlisp.asd

index fd31e48af87613b494632bf4c7423ad277ce6a7b..0a866ee0ca4632afc8032a29a838bdfd32915cce 100644 (file)
@@ -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.
 (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)))
 
 
         
index 07307139abf38e161f1bb06f51486086fabafd32..007c5725988df14e32624645de3cde53efd98ec2 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: composite.lisp,v 1.7 2002/10/16 16:09:55 kevin Exp $
+;;;; $Id: composite.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.
 (defun find-ucon2_freq-coc-tui-all (tui)
   (find-ucon2_freq-tui-all tui #'find-ucon2-coc-tui))
 
-#+cmu
+#+(or cmu scl)
 (dolist (c '(ucon_freq ustr_freq usty_freq usrl_freq))
   (let ((cl #+cmu (pcl:find-class c)
-           #+sbcl (sb-pcl:find-class c)))
+           #+scl (find-class c)))
     #+cmu (pcl:finalize-inheritance cl)
-    #+sbcl (sb-pcl:finalize-inheritance cl)))
+    #+scl (clos:finalize-inheritance cl)))
index 86d6b2c4ff40ad3b7ee0e4806b4b12d3930df9a6..0ef049900c9adf1a6ae04b2237aad0ca1afeedf4 100644 (file)
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Apr 2000
 ;;;;
-;;;; $Id: umlisp.asd,v 1.8 2002/10/18 03:57:39 kevin Exp $
+;;;; $Id: umlisp.asd,v 1.9 2002/10/18 07:28:57 kevin Exp $
 ;;;;
 ;;;; This file, part of UMLisp, is
 ;;;;    Copyright (c) 2000-2002 by Kevin M. Rosenberg, M.D.
@@ -18,7 +18,7 @@
 
 (in-package :asdf)
 
-#+(or allegro lispworks cmu sbcl openmcl)
+#+(or allegro lispworks cmu sbcl openmcl scl)
 (defsystem :umlisp
   :perform (load-op :after (op umlisp)
                    (pushnew :umlisp cl:*features*))