r4286: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 20:22:37 +0000 (20:22 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Sat, 29 Mar 2003 20:22:37 +0000 (20:22 +0000)
mop.lisp

index 0002d566f2f016374a6c3175232660bb9570e7b5..613031565164a14fbadedc754242473ae0cc6ebf 100644 (file)
--- a/mop.lisp
+++ b/mop.lisp
@@ -11,7 +11,7 @@
 ;;;; in Text, HTML, and XML formats. This includes hyperlinking
 ;;;; capability and sub-objects.
 ;;;;
-;;;; $Id: mop.lisp,v 1.27 2003/03/29 20:11:09 kevin Exp $
+;;;; $Id: mop.lisp,v 1.28 2003/03/29 20:22:37 kevin Exp $
 ;;;;
 ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg
 ;;;;
        (class-prototype (generic-function-method-class gf))
        `(lambda (the-class the-instance the-slot-name)
         (declare (ignore the-class))
-        (setf (slot-value the-instance the-slot-name) (,reader ,@keys))))
-       (print init-args-values)
+        (setf (slot-value the-instance the-slot-name) (,reader ,@keys)))
+       nil)
        (add-method gf
-                 (make-instance (generic-function-method-class gf)
-                                ':specializers (list t class (intern-eql-specializer slot-name))
-                                ':lambda-list '(the-class the-instance the-slot-name)
-                                ':function `(function ,method-lambda)
-                                ;;init-args-values
-                                )))))
+                   (apply
+                    #'make-instance (generic-function-method-class gf)
+                    ':specializers (list t class (intern-eql-specializer slot-name))
+                    ':lambda-list '(the-class the-instance the-slot-name)
+                    ':function `(function ,method-lambda)
+                    init-args-values)))))
 
 (defun finalize-subobjects (cl)
   "Process class subobjects slot"