Path: utzoo!utgpu!watmath!clyde!att!rutgers!rochester!pt.cs.cmu.edu!a.gp.cs.cmu.edu!ccm
From: ccm@a.gp.cs.cmu.edu (Christopher McConnell)
Newsgroups: comp.lang.lisp
Subject: Re: SETF methods
Message-ID: <3761@pt.cs.cmu.edu>
Date: 3 Dec 88 17:08:26 GMT
References: <613@cnetlu.UUCP>
Organization: Carnegie-Mellon University, CS/RI
Lines: 4
In-reply-to: ranson@cnetlu.UUCP's message of 2 Dec 88 06:43:02 GMT

The CLOS spec is specifying how to define setf methods (as in CLOS
methods with specializers) not the normal CL setf methods.  So, you
have to say (defmethod (setf woof) (value (object blah))).  You use
define-setf-method to define normal setf methods.
--