X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=package.lisp;h=9d9a718999438a95927eb12d9fcda1213eb0c9ee;hb=e073bb3fcbbac497f541d37472e46fa59ed2433c;hp=b91185c2221f7c9699ab5be7bb25d443e6dcf35d;hpb=fe08abdb44f449a2814aa1ffb0f8274c88e90e8c;p=hyperobject.git diff --git a/package.lisp b/package.lisp index b91185c..9d9a718 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.38 2003/03/31 16:04:31 kevin Exp $ +;;;; $Id: package.lisp,v 1.42 2003/04/15 05:18:22 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; ************************************************************************* @@ -49,16 +49,11 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (shadowing-import #+allegro - '(excl::compute-effective-slot-definition-initargs - ) + '(excl::compute-effective-slot-definition-initargs) #+lispworks - '(clos:class-slots clos::slot-definition-name - clos::standard-direct-slot-definition clos::standard-effective-slot-definition - clos::compute-effective-slot-definition-initargs - clos:make-method-lambda) + '(clos::compute-effective-slot-definition-initargs) #+kmr-sbcl-mop - '(sb-pcl::compute-effective-slot-definition-initargs - ) + '(sb-pcl::compute-effective-slot-definition-initargs) #+kmr-sbcl-pcl '(sb-pcl:class-of sb-pcl:class-name sb-pcl:class-slots sb-pcl:find-class sb-pcl::standard-class @@ -69,7 +64,7 @@ sb-pcl::compute-effective-slot-definition-initargs sb-pcl::slot-value-using-class sb-pcl:class-prototype sb-pcl:generic-function-method-class sb-pcl:intern-eql-specializer - sb-pcl:make-method-lambda) + sb-pcl:make-method-lambda sb-pcl:generic-function-lambda-list) #+cmu '(pcl:class-of pcl:class-name pcl:class-slots pcl:find-class pcl::standard-class pcl::slot-definition-name pcl:finalize-inheritance @@ -79,7 +74,7 @@ pcl::compute-effective-slot-definition-initargs pcl::slot-value-using-class pcl:class-prototype pcl:generic-function-method-class pcl:intern-eql-specializer - pcl:make-method-lambda) + pcl:make-method-lambda pcl:generic-function-lambda-list) #+scl '(clos:class-slots clos::standard-class clos::slot-definition-name clos:finalize-inheritance @@ -89,7 +84,9 @@ clos::compute-effective-slot-definition-initargs clos::slot-value-using-class clos::class-prototype clos:generic-function-method-class - clos:intern-eql-specializer clos:make-method-lambda) + ;; note: make-method-lambda is not fbound + clos:intern-eql-specializer clos:make-method-lambda + clos:generic-function-lambda-list) :hyperobject))