From 149038614c51e3546f5cf2ab7bba6a0332c37095 Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Wed, 12 Jul 2006 13:25:55 +0000 Subject: [PATCH] 0.9.14.11: Add a couple of necessary FINALIZE-INHERITANCEs to mop.impure.lisp. With the current eager finalization they have no effect, but the finalization regime probably has to change to support anonymous classes. --- tests/mop.impure.lisp | 2 ++ version.lisp-expr | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/mop.impure.lisp b/tests/mop.impure.lisp index 8aad5b4..8b18720 100644 --- a/tests/mop.impure.lisp +++ b/tests/mop.impure.lisp @@ -198,6 +198,7 @@ :name 'y :allocation :instance)))) (defclass dummy-ctais () ((x :allocation :class))) +(finalize-inheritance (find-class 'class-to-add-instance-slot)) (assert (equal (mapcar #'slot-definition-allocation (class-slots (find-class 'class-to-add-instance-slot))) ;; FIXME: is the order really guaranteed? @@ -225,6 +226,7 @@ :name 'y :allocation :class)))) (defclass dummy-ctacs () ((x :allocation :class))) +(finalize-inheritance (find-class 'class-to-add-class-slot)) (assert (equal (mapcar #'slot-definition-allocation (class-slots (find-class 'class-to-add-class-slot))) '(:class :class))) diff --git a/version.lisp-expr b/version.lisp-expr index ae34558..9e0d5c3 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.14.10" +"0.9.14.11" -- 1.7.10.4