From 4e0e251d6dca596ad8f3da81c1b582e3887b3c98 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Fri, 9 Dec 2005 15:57:43 +0000 Subject: [PATCH] 0.9.7.22: Oops II. Make (SETF CLASS-NAME) and (SETF GENERIC-FUNCTION-NAME) return the right values. --- src/pcl/methods.lisp | 6 ++++-- version.lisp-expr | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/pcl/methods.lisp b/src/pcl/methods.lisp index 9d0fe31..1268040 100644 --- a/src/pcl/methods.lisp +++ b/src/pcl/methods.lisp @@ -1563,10 +1563,12 @@ (defmethod (setf class-name) (new-value class) (let ((classoid (%wrapper-classoid (class-wrapper class)))) (setf (classoid-name classoid) new-value)) - (reinitialize-instance class :name new-value)) + (reinitialize-instance class :name new-value) + new-value) (defmethod (setf generic-function-name) (new-value generic-function) - (reinitialize-instance generic-function :name new-value)) + (reinitialize-instance generic-function :name new-value) + new-value) (defmethod function-keywords ((method standard-method)) (multiple-value-bind (nreq nopt keysp restp allow-other-keys-p keywords) diff --git a/version.lisp-expr b/version.lisp-expr index dbab5d6..a246e19 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.7.22" +"0.9.7.23" -- 1.7.10.4