From: espen Date: Mon, 10 Apr 2006 17:34:45 +0000 (+0000) Subject: Fixed build problem with SBCL 0.9.11 X-Git-Tag: clg-0-92-1~13 X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/ee62c9a222bca3bba8a9f187a121b41e779b5562 Fixed build problem with SBCL 0.9.11 --- diff --git a/glib/gtype.lisp b/glib/gtype.lisp index 9927c53..c595f53 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)