X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=attrib-class.lisp;fp=attrib-class.lisp;h=3e79325b7bdb8d021512e84af439c331fa3a934a;hp=ee88042d4ee09342a92c1cd096bff24f9bce0a24;hb=5ef3317938a27c4fe0341ebe1ccc3fb453901cba;hpb=fff759278b0089e16c650fe7023b41eeafee30e2 diff --git a/attrib-class.lisp b/attrib-class.lisp index ee88042..3e79325 100644 --- a/attrib-class.lisp +++ b/attrib-class.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: attrib-class.lisp,v 1.8 2003/04/29 01:39:40 kevin Exp $ +;;;; $Id: attrib-class.lisp,v 1.9 2003/04/29 03:50:42 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -41,16 +41,13 @@ on example from AMOP")) (superclass kmr-mop:standard-class)) t) -(defmethod kmr-mop:direct-slot-definition-class ((cl attributes-class) - #+(or sbcl cmu scl lispworks) - initargs - #+(or allegro) &rest #+(or allegro) iargs) - ;; (format t "attributes:~s iargs:~s~%" attributes iargs) +(defmethod kmr-mop:direct-slot-definition-class ((cl attributes-class) #+kmr-normal-dsdc &rest initargs) + (declare (ignore initargs)) (kmr-mop:find-class 'attributes-dsd)) (defmethod kmr-mop:compute-effective-slot-definition :around - ((cl attributes-class) #+kmr-named-cesd name dsds) - #+kmr-named-cesd (declare (ignore name)) + ((cl attributes-class) #+kmr-normal-cesd name dsds) + #+kmr-normal-cesd (declare (ignore name)) (apply #'make-instance 'attributes-esd :attributes (remove-duplicates (mapappend #'dsd-attributes dsds))