From 45e3138d31eaae17df85599b1c891f2b50eb0d8f Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 3 Apr 2003 23:58:15 +0000 Subject: [PATCH] r4367: Auto commit for Debian build --- mop.lisp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mop.lisp b/mop.lisp index bbd6604..fb453cc 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.36 2003/04/01 16:56:46 kevin Exp $ +;;;; $Id: mop.lisp,v 1.37 2003/04/03 23:58:15 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -296,9 +296,16 @@ (make-method-lambda gf (class-prototype (generic-function-method-class gf)) + #-lispworks `(lambda (the-class the-instance the-slot-name) (declare (ignore the-class)) (setf (slot-value the-instance the-slot-name) (,reader ,@keys))) + #+lispworks + '(the-class the-instance the-slot-name) + #+lispworks + '(declare (ignore the-class)) + #+lispworks + '(setf (slot-value the-instance the-slot-name) (,reader ,@keys)) nil) (add-method gf (apply -- 2.34.1