X-Git-Url: https://git.distorted.org.uk/~mdw/clg/blobdiff_plain/6baf860c07c91b2209e4738f469248e7d8f4d6eb..4683056fd8d57cdfeba2f523fbaf3620c6df5792:/glib/glib.lisp diff --git a/glib/glib.lisp b/glib/glib.lisp index d616158..8d080ff 100644 --- a/glib/glib.lisp +++ b/glib/glib.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: glib.lisp,v 1.16 2004/11/06 21:39:58 espen Exp $ +;; $Id: glib.lisp,v 1.18 2004/11/07 16:03:55 espen Exp $ (in-package "GLIB") @@ -72,7 +72,6 @@ (remhash id *user-data*)) - ;;;; Quarks (internal *quark-counter* *quark-from-object* *quark-to-object*) @@ -197,7 +196,7 @@ `(make-glist ',element-type ,list))) (defmethod to-alien-function ((type (eql 'glist)) &rest args) - (declare (ignore type args)) + (declare (ignore type)) (destructuring-bind (element-type) args #'(lambda (list) (make-glist element-type list)))) @@ -277,7 +276,7 @@ `(make-sglist ',element-type ,list))) (defmethod to-alien-function ((type (eql 'gslist)) &rest args) - (declare (ignore type args)) + (declare (ignore type)) (destructuring-bind (element-type) args #'(lambda (list) (make-gslist element-type list))))