From: espen Date: Mon, 10 Apr 2006 17:34:45 +0000 (+0000) Subject: Fixed build problem with SBCL 0.9.11 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/4080e30aa85143a0975ae5718cd81628b24e20c2?ds=sidebyside Fixed build problem with SBCL 0.9.11 --- diff --git a/glib/gtype.lisp b/glib/gtype.lisp index 373a5ee..9021bce 100644 --- a/glib/gtype.lisp +++ b/glib/gtype.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: gtype.lisp,v 1.49 2006-03-06 20:57:08 espen Exp $ +;; $Id: gtype.lisp,v 1.50 2006-04-10 17:34:45 espen Exp $ (in-package "GLIB") @@ -298,7 +298,6 @@ (defmethod finalize-inheritance ((class ginstance-class)) - (call-next-method) (let* ((class-name (class-name class)) (super (most-specific-proxy-superclass class)) (gtype (or @@ -320,8 +319,8 @@ (not (eq (class-name super) (supertype type-number)))) (warn "Super class mismatch between CLOS and GObject for ~A" class-name))) - - (update-size class)) + (update-size class) + (call-next-method)) (defmethod shared-initialize ((class ginstance-class) names &rest initargs)