chiark / gitweb /
Adding reader and writer functions to COPY-OF
authorespen <espen>
Sat, 4 Dec 2004 00:28:47 +0000 (00:28 +0000)
committerespen <espen>
Sat, 4 Dec 2004 00:28:47 +0000 (00:28 +0000)
glib/ffi.lisp

index 811a6ec288e629015d7e3b62cd1d0f3d2adee9e9..95f2155e9d896f07f882af76f5820d68dbe64fb2 100644 (file)
@@ -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: ffi.lisp,v 1.6 2004/11/19 13:02:51 espen Exp $
+;; $Id: ffi.lisp,v 1.7 2004/12/04 00:28:47 espen Exp $
 
 (in-package "GLIB")
 
@@ -299,7 +299,7 @@ (defmethod cleanup-function ((type t) &rest args)
 
 (defmethod destroy-function ((type t) &rest args)
   (declare (ignore type args))
-  #'(lambda (location offset)
+  #'(lambda (location &optional offset)
       (declare (ignore location offset))))
 
 (defmethod copy-to-alien-form  (form (type t) &rest args)
@@ -768,4 +768,12 @@ (defmethod from-alien-function ((type (eql 'copy-of)) &rest args)
   (declare (ignore type))
   (copy-from-alien-function (first args)))
 
+(defmethod reader-function ((type (eql 'copy-of)) &rest args)
+  (declare (ignore type))
+  (reader-function (first args)))
+
+(defmethod writer-function ((type (eql 'copy-of)) &rest args)
+  (declare (ignore type))
+  (writer-function (first args)))
+
 (export 'copy-of)