From 2b481386c12c8841f9135b384bd563446c71a64f Mon Sep 17 00:00:00 2001 Message-Id: <2b481386c12c8841f9135b384bd563446c71a64f.1714770918.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sun, 7 Nov 2004 21:41:35 +0000 Subject: [PATCH] Bug fix: boxed should have struct as super class Organization: Straylight/Edgeware From: espen --- glib/gboxed.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- [mdw]