[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Another expand-defmethod-internal bug
- To: CommonLoops.pa@Xerox.COM
- Subject: Another expand-defmethod-internal bug
- From: Kerry Kimbrough <Kimbrough@dsg.csc.ti.com>
- Date: Thu, 28 Jul 88 11:51:17 CDT
- Redistributed: commonloops.pa
- Sender: KK@Sierra.csc.ti.com
Version: 7/7
System: TI Explorer
Using kanderson's recently-posted version of this, I found the following
change necessary to avoid errors running setf methods.
**** original
(block ,generic-function-name ,@real-body))))
**** modified
(block ,(IF (LISTP generic-function-name) (SECOND generic-function-name)
generic-function-name)
,@real-body))))
***************