From: espen Date: Sun, 7 Nov 2004 21:41:35 +0000 (+0000) Subject: Bug fix: boxed should have struct as super class X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/2b481386c12c8841f9135b384bd563446c71a64f Bug fix: boxed should have struct as super class --- diff --git a/glib/gboxed.lisp b/glib/gboxed.lisp index caf5fb4..41f6243 100644 --- a/glib/gboxed.lisp +++ b/glib/gboxed.lisp @@ -15,7 +15,7 @@ ;; License along with this library; if not, write to the Free Software ;; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -;; $Id: gboxed.lisp,v 1.11 2004-11-06 21:39:58 espen Exp $ +;; $Id: gboxed.lisp,v 1.12 2004-11-07 21:41:35 espen Exp $ (in-package "GLIB") @@ -25,7 +25,7 @@ (eval-when (:compile-toplevel :load-toplevel :execute) (pkg-config:pkg-variable "glib-2.0" "libdir") "/libgobject-2.0.so"))) -(defclass boxed (proxy) +(defclass boxed (struct) () (:metaclass struct-class))