From 5fe53d4fd03d9339c06850dd54dcbcae10b3678e Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Sat, 29 Mar 2003 20:22:37 +0000 Subject: [PATCH] r4286: Auto commit for Debian build --- mop.lisp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mop.lisp b/mop.lisp index 0002d56..6130315 100644 --- 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 ;;;; @@ -294,15 +294,15 @@ (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" -- 2.34.1