From: espen Date: Fri, 15 Jun 2007 12:23:39 +0000 (+0000) Subject: Added clarifying comment X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/f83bdc196329851f493b8e7a0931543357109884 Added clarifying comment --- diff --git a/gffi/virtual-slots.lisp b/gffi/virtual-slots.lisp index ff339eb..162b4f4 100644 --- a/gffi/virtual-slots.lisp +++ b/gffi/virtual-slots.lisp @@ -20,7 +20,7 @@ ;; TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE ;; SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -;; $Id: virtual-slots.lisp,v 1.8 2007-06-01 06:46:06 espen Exp $ +;; $Id: virtual-slots.lisp,v 1.9 2007-06-15 12:23:39 espen Exp $ (in-package "GFFI") @@ -207,6 +207,8 @@ (defmethod compute-slot-writer-function ((slotd effective-virtual-slot-definitio (etypecase setter (symbol #'(lambda (object value) (funcall setter object value))) (list #'(lambda (object value) + ;; Setter is a (setf ...) form and thus takes the + ;; value as the first argument (funcall setter value object))) (function setter))))